Jump to content

Mysql Link error...


eaglelegend

Recommended Posts

Hi, I am getting rather annoyed with this little bit of code as it is giving me an error, on my application on facebook... any ideas?

 

The code: it is meant to get the users that have recently viewed my application from the database then display their pictures on the app.

 

$sql = "SELECT * FROM usertable order by uid DESC limit 7";
$result = mysql_query($sql, $connection);
$num = @mysql_num_rows($result);
$i = 0;
print"<div align=center><b>Recent Visitors</b><br />";
while ($num > $i) { 

$uids = mysql_result($result, $i, "uid");
$scores = mysql_result($result, $i, "point");
$num_games = mysql_result($result, $i, "gameplayed");
s
?>
<fb:profile-pic uid="<?php echo $uids; ?>" size="square" linked="true" />

echo '<fb:tabs>';
echo '<fb:tab-item href='.$appCanvasUrl.' title="Arcade Site List" selected="true" />';
echo '<fb:tab-item href='.$appCanvasUrl.'invite.php title="Invite Friends" />';
echo '</fb:tabs>';
<?php
//$game = mysql_result($result,$i, "game");
$i++;
}

print"</div>";
?>

 

This is the error im getting

Warning: mysql_query(): supplied argument is not a valid MySQL-Link resource in THE_CODE on line 18

Link to comment
Share on other sites

This thread is more than a year old. Please don't revive it unless you have something important to add.

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Restore formatting

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • 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.