Thread: pp-inc issue
View Single Post
Old January 9th, 2009, 06:55 PM   #1 (permalink)
CaddisNJF
Member
Verified Customer
 
Join Date: Apr 2002
Posts: 158
Send a message via AIM to CaddisNJF
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 />&nbsp;[ <a href=\"{$Globals['maindir']}/member.php?protype=6\">$msgs {$Globals['pp_lang']['lcmessage']}</a> ]";
}
else
{
$menu2 .= "<br />&nbsp;[ <a href=\"{$Globals['maindir']}/member.php?protype=6\">$msgs {$Globals['pp_lang']['lcmessages']}</a> ]";
}
}
else
{
$menu2 .= "<br />&nbsp;[ {$Globals['pp_lang']['lcnomessages']} ]";
}
}
CaddisNJF is offline   Reply With Quote