View Single Post
Old 26th April 2003, 03:03 PM   #3 (permalink)
Euge
Registered User
 
Euge's Avatar
 
Join Date: Feb 2003
Location: Lost in confusion
Posts: 710
Re:PHP/MySQL: Last Updated Date

You can also report the error message by checking the query result:

Code:
$result = mysql_query("show table status from eliza-d_com like 'missy'");
if (!$result) {
    echo mysql_error();
    exit();
}
$info = mysql_fetch_array($result);
echo $info["Update_time"];
Euge is offline   Reply With Quote