If you read an earlier thread i started i was having completely the opposite problem that i am having now. Before it kept telling me that the table already existed and now it tells me the table does not exist.
I have created the table in the db.php page where all the connections and database is set up the code i have used for creating the table looks like this
mysql_select_db("$database_name", $connection);
$sql="CREATE TABLE `broad_images` (
`ID` int NOT NULL auto_increment,
`broad1` varchar(100),
`broad2` varchar(100)
)";
and when i try to get some data out of the table it tells me the table has not been created where is it wrong. the code i have used is no different than before i dont think the computer likes me.