Search Results

1
vote

Object Oriented MySQL Statements, PHP

You should probably wrap the values() in parens too, like: $MyDB->prep("INSERT INTO `demo` (`id`, `name`, `score`, `dept`, `date`) VALUES ('1','James Kablammo', '1205550', 'Marke …
5
votes

php mysql date/time question

MySQL datetime should be formatted with dashes: YYYY-MM-DD HH:MM:SS http://dev.mysql.com/doc/refman/5.0 …
5
votes

MySQL ORDER problem

This will do what you want: select * from myTable order by field(myID, 8, 7, 6) desc; You can set the order of whatever ID's (or whatever) youwant to appear, and …
1
vote

need to create an application that will work on the Internet also and local internet also

Google Gears? http://gears.google.com/support/ …
3
votes

Accessing last created row in PHP/MySQL

You can get the last item inserted with mysql_insert_id() http://us.php.net/manual/en/function.mysql-insert …