DANNY CHANG NEW YORK
Posts tagged mySQL
Test if MySQL table exists with PHP
Nov 26th
I was building up the prototype of my thesis, and wondered how to test if a table exists in database. so I googled.
[php] function table_exists ( $table , $db ) { $tables = mysql<em>list</em>tables ( $db ); while ( list ( $temp ) = mysql<em>fetch</em>array ( $tables )) { if More >
Dates in PHP and MySQL
Oct 14th
There are so many ways to format and store the date and time between PHP & mySQL.
This article give a good tutorial.
Choosing Optimal MySQL Data Types
Sep 15th
This post is for people who are interested in data visualization.
or who just want to read some extended info on Data types.
Check out this post . and hope this is helpful.
http://making-the-web.com/2008/04/27/choosing-optimal-mysql-data-types/