Which CSS Framework?

It’s time for a bit of feedback from you. Unless you’ve been living under a rock, you’ll have heard of ‘CSS frameworks’ but have you ever used one? A quick search on Google brings up a multitude of different ones but which one is the best?
I’ve put together a quick list of the most popular [...]

Simple Dropdown Menu

In an ideal world, creating a cross-browser dropdown menu would be straight forward. Unfortunately, the world of browsers is far from ideal (as long as Internet Explorer 6 still exists!). For other browsers, the following code works fine:

PHP Quiz Source Code

Just a quick heads up to let you know that you can now download all of the source code for the PHP Quiz. This might make it easier for you to get up and running without trying to follow all of the series. I’ve also included the small amount of JavaScript too.
You can download it [...]

Make Your Own PHP Quiz (final part)

You can download the entire source code for this series here
The first part of this post will concentrate on adding new users/scores to the leaderboard (leaders.xml). We only want to add this information to the xml file when the user has completed the quiz(obviously) so, on ‘test.php’, we check for the presence of the [...]

Make Your Own PHP Quiz (part 6)

You can download the entire source code for this series here
In order to store usernames and scores we’re going to use an xml file. We could also do this with a database but for the sake of simplicity, we’ll use xml. Copy and paste the following in to a text editor and save it [...]

Make Your Own PHP Quiz (part 5)

You can download the entire source code for this series here
At the end of the last post, we had an index page allowing users to register for the quiz (or not) via 2 forms. Now we need to display the questions/answers on ‘test.php’.
Inside the #quiz div, replace the content of the heading and paragraph [...]