Good to know about how to transform an xml document into json: <?php $xml = simplexml_load_string($xml_string,’SimpleXMLElement’,LIBXML_ NOCDATA); $json = json_encode($xml); $array = json_decode($json,TRUE); Source: http://us1.campaign-archive1.com/?u=b39a511bbe71aa74d27241bb6&id=fc98d2294c&e=b11ae40681
Continue readingCategory: PHP
Back to (PHP) basics. Creating your own SEO friendly “mini-website” in PHP
I want to be noted that this is not a tutorial about creating an MVC framework from zero. If you want that kind of tutorial, […]
Continue readingRevisiting the multilevel menu in PHP with some additional code (as in… Bootstrap CSS)
(created at: May 07, 2014; last update: December 15, 2015) It’s been almost a year since I’ve posted a tutorial (Multi-level menu in PHP – […]
Continue readingUsing Composer PHP (and Git) behind a Proxy in Windows
We said good-bye to the PEAR packages, and hello to Composer. All is working fine at my home computer, but then I go to work […]
Continue readingMulti-level menu in PHP – how to do it without killing yourself or the database in the process
Why don’t you take a look at this newer tutorial about creating a multi-level menu in PHP. It also has a Bootstrap Framework implementation 🙂 […]
Continue reading