<?php
$result=mysql_query("SELECT * FROM latest");
while($row=mysql_fetch_object($result)) {
echo $row->name;
echo $row->title;
}
if (!$result)
{
die('Could not connect: ' . mysql_error());
}
?>
it shows an error : Could not connect: Table 'forum.latest' doesn't exist
my db name : forum
When i imported 'latest' table then no prefix added even in latest it contains named as latest....
how do i fix it?

New Topic/Question
Reply



MultiQuote


|