View Single Post
09-05-2007, 05:25 PM
#3
pixelgod is offline pixelgod
Status: Member
Join date: Jul 2007
Location: 127.0.0.1
Expertise:
Software:
 
Posts: 110
iTrader: 4 / 100%
 

pixelgod is on a distinguished road

Send a message via MSN to pixelgod

  Old

The table names

EDIT: this is what I have, I just need it to filter out the ones without CMS_ in front.

$result = mysql_list_tables(dbname);
if(mysql_num_rows($result)) {
while($row = mysql_fetch_array($result))
{
echo"<option value=\"$row[0]\">$row[0] $row[category]</option>";
}
}