WonderCMS Bootstrap 5 theme, updated

The updated version, 1.1.0, of the WonderCMS Bootstrap 5 theme includes support for “Dark mode”, based on the visitor browser’s preference. If you haven’t yet checked out WonderCMS, and if you’re looking for a really tiny CMS platform, you may want to have a look. …

Read more

WonderCMS Bootstrap 5 theme

WonderCMS is an extremely small and simple CMS written in PHP. It can be installed and configured in less than a minute and puts a minimal load on your web server. After having browsed the available themes, I put together a Boostrap 5 Theme for …

Read more

var_dump() for Javascript

PHP, for example, has var_dump() and print_r() to facilitate quick variable dumps to log files, etc. For Javascript, one can use console.log() in combination with JSON.stringify() to achieve something similar.   console.log( JSON.stringify(object) ); It’s also possible to “pretty-print” the output like so:   console.log( JSON.stringify(object, null, …

Read more