Jump to content

php errer


raptor30506090

Recommended Posts

  
$query = mysql_query("SELECT * FROM sub_nav WHERE subNav_ID=" . mysql_real_escape_string((int)$id));
					 $row = mysql_fetch_assoc($query);
					 $table =  $row['subNavName'];
					 // ******************************* This if statment controls the content ************************
					 if($row['show_hide'] == 1){
						                       $query = mysql_query("SELECT * FROM ('$table')");
											   while($row = mysql_fetch_assoc($query)){ ?>

Link to comment
https://forums.phpfreaks.com/topic/260611-php-errer/#findComment-1335636
Share on other sites

output the SQL to see what it looks like:

 

$query = mysql_query("SELECT * FROM sub_nav WHERE subNav_ID=" . mysql_real_escape_string((int)$id));
$row = mysql_fetch_assoc($query);
$table =  $row['subNavName'];
if($row['show_hide'] == 1)
{
$sql = "SELECT * FROM $table";
$query = mysql_query($sql) or die(mysql_error() . '<br />' . $sql);
while($row = mysql_fetch_assoc($query))
{ ?>

Link to comment
https://forums.phpfreaks.com/topic/260611-php-errer/#findComment-1335643
Share on other sites

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.