09-29-2007, 11:24 PM
|
#3 (permalink)
|
|
La Vida es Sueño
Join Date: Sep 2007
Location: Oldham
Posts: 2,280
Thanks: 90
|
PHP Code:
$pTables = mysql_list_tables('myDatabase');
while($aTable = mysql_fetch_row($pTables)) { if($aTable[0] == 'myTable') { echo 'Found!'; break; } }
__________________
The man who comes back through the Door in the Wall will never be quite the same as the man who went out.
|
|
|