It’s time to learn about sessions in PHP. Here is some basic code to start a session, and display the resulting $_SESSION superglobal: <?php session_start(); echo ‘<pre>’; var_dump($_SESSION); echo ‘</pre>’; The resulting output: array(0) { } To prove that it’s
The complexity of programming
In my last blog post, I built a basic “Hello World” app using the Slim Framework. Today, I decided to take a look at the tutorial provided by Luka Peharda on Code Forest called Creating simple tasks app with Backbone.js and Slim micro
My first Slim Framework app
Tonight I decided to check out the Slim Framework. I heard about it at Tek13, and had been wanting to see what it was like. The first thing I had to do was understand Composer. I started reading on the