Je moet ingelogd zijn om te stemmen.
SHOW TABLES
function mysql_exist_table($table) { $res = mysql_query("SHOW TABLE STATUS LIKE '".$table."'"); $row = mysql_fetch_assoc($res); if($row == $table) return true; else return false; }
function mysql_exist_table($table) {$res = mysql_query("SHOW TABLE STATUS LIKE '".$table."'");$row = mysql_fetch_assoc($res); if($row == $table) return true; else return false;}
$res = mysql_query("SHOW TABLE STATUS LIKE 'uw_tabel_naam'"); $rij = mysql_fetch_assoc($res); // zien of er iets in rij zit
$res = mysql_query("SHOW TABLE STATUS LIKE 'uw_tabel_naam'");$rij = mysql_fetch_assoc($res);// zien of er iets in rij zit