Nice one Peter... :-)
Just wanted to comment that the app you build in PHP should never depend
on the order of fields in your table.
If you want to add a new field, just add a column at the end, and use your select statement to specify which fields you want, and what order you want to receive them in.
So, if your table looks like this:
field1 | field 2 | field 3 | field 5 | field 4
you can get the correct order by using;
select (field1,field2,field3,field4,field5) from table
This saves you a LOT of trouble lateron.
(trouble like this question, how do I insert a new column between two existing columns)