| pp-inc issue
I'm getting the following:
Warning: mysql_fetch_row(): supplied argument is not a valid MySQL result resource in /hsphere/local/home/xxx/njflyfishing.com/photopost/pp-inc.php on line 3270
Where as the following line: list( $msgs ) = mysql_fetch_row($q);
in the following section is line #3270. Any ideas?
if ( $User['userid'] > 0 && $Globals['usemsg'] == "yes" )
{
$q = ppmysql_query("SELECT count(*) FROM {$Globals['pp_db_prefix']}messages WHERE userid={$User['userid']} AND status=0", $link);
list( $msgs ) = mysql_fetch_row($q);
if ( $msgs )
{
if ( $msgs == 1 )
{
$menu2 .= "<br /> [ <a href=\"{$Globals['maindir']}/member.php?protype=6\">$msgs {$Globals['pp_lang']['lcmessage']}</a> ]";
}
else
{
$menu2 .= "<br /> [ <a href=\"{$Globals['maindir']}/member.php?protype=6\">$msgs {$Globals['pp_lang']['lcmessages']}</a> ]";
}
}
else
{
$menu2 .= "<br /> [ {$Globals['pp_lang']['lcnomessages']} ]";
}
}
|