In: CSS
27 May 2008CSS brings 16,777,216 colours to your disposal. They can take the form of a name, an rgb (red/green/blue) value or a hex code.
HTML Dog, The Book
HTML Dog is hosted by Titan Internet
red
Is the same as
rgb(255,0,0)
Which is the same as
rgb(100%,0%,0%)
Which is the same as
#ff0000
Which is the same as
#f00
There are 17 valid predefined colour names. They are [...]
In: SQL
17 May 2008A nice and simple way of backing up a mysql table without renaming / exporting is to create a new table with the same structure and copy across the data for the current table.
This can be done without having to copy and paste the structure of the table.
Simply replace the [NEW_TABLE] and [OLD_TABLE] markers with [...]
In: CSS
16 May 2008introduction to css
In: PHP
15 May 2008This is a very easy to install pagination class that takes a PHP array and parses it into an array. To install into one of your personal array’s start by including the main file and creating the pagination object.
Once this is done, simply do the following with your own array. For this tutorial i will [...]
In: AJAX
14 May 2008What is Ajax?
