DANNY CHANG NEW YORK
Posts tagged php
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 >
PHP to detect browsers
Oct 22nd
As web developers, we always have to provide different style sheet/bug fix for different users/browsers.
I began to collect solution for this, and will have future update on this while i do my research online..
if you have something else can contribute. please leave a comment here. thanks..
PHP to detect mobile phones 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.