In the previous article we’ve set up the infrastructure that will hold our CodeIgniter application. In this tutorial we are finally going to really install […]
Continue readingAuthor: avenirer
CodeIgniter 4 – Step 1…b?: Start development fast? Why kill yourself with Docker or XAMPP? Use Laragon!
Having in mind that what you code is going to enter into production, the best solution is indeed to use Docker containers. So, if you […]
Continue readingCodeIgniter 4 – Step 1: Let’s make ourselves some Docker containers
Hello, people. Long time, no tutorial… I was thinking the other day about this thing called docker containers, and after all this time I still […]
Continue readingAllow .htm, .html extensions in WordPress without redirect
I am in the process of making a new Wordpress website, starting from an existing WordPress which has a really long history, with a lot of plugins.
The problem I encountered was that the old website had pages that ended with “.htm”. Why would someone bother to have urls that ended with “.htm” extension is way beyond me, but considering that the client wanted to keep those urls the same (“for the moment”), and I didn’t want to add another plugin, I had to find a way to deal with those urls.
Continue readingPDO – flow for working with database
This are some of the methods when working with PDO.
Continue readingA new video tutorial about how to (properly) use session library in CodeIgniter
Hello, I came with a new video tutorial. This one is about how to properly configure the session library in CodeIgniter. Why this subject? Because, […]
Continue readingMy first video tutorial – installing CodeIgniter and removing index.php from url
Well… Some people asked for video tutorials, and I do realise we are living in different times, but my spoken english is not that good. […]
Continue readingXML to JSON (or array…)
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 readingArduino – Day… Uno – Connecting the micro-controller to the computer
Well… It seems that I’ve come to take an interest into Arduino micro-controllers. And they look great. At least the version I bought seems to […]
Continue readingHow to set up CodeIgniter in order to use Gmail for emails
Now and then and… every time… I see people complaining that the email library of CodeIgniter doesn’t work. Why? Because they are using Gmail in […]
Continue reading