Jump to content

something messed up with comments


quickstopman

Recommended Posts

i have a user system with profiles and profile comments and stuff of the sort

but ive got one problem

when i post a comment on someones profile

when i try to reload it

i get a 500 server error after about a minute of waiting

 

here is the code for the comments page

<?

if (eregi("comments.php", $_SERVER['SCRIPT_NAME'])) {
    Header("Location: people.php"); die();
}

include("config.php");
$id = $_GET['id'];
$sql = mysql_query("SELECT * FROM `profile_comment` WHERE user_id = '{$id}' ORDER BY timedate") OR die(mysql_error());

echo "<table>";

$comments = mysql_fetch_array($sql);
while($list = $comments) {
echo "
<tr>
<td>From:<br>
{$list['user']}
</td>
<td></td>
{$list['comment']}
</tr>";
}

echo "</table>";

?>

thanks

Link to comment
Share on other sites

You created an infinite loop with your while statement.

 

change

 

$comments = mysql_fetch_array($sql);
while($list = $comments) {
echo "
<tr>
<td>From:<br>
{$list['user']}
</td>
<td></td>
{$list['comment']}
</tr>";
}

 

to

 

while($list = mysql_fetch_array($sql)) {
echo "
<tr>
<td>From:<br>
{$list['user']}
</td>
<td></td>
{$list['comment']}
</tr>";
}

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.