Jump to content

[SOLVED] Checking if new does not work


nathanmaxsonadil

Recommended Posts

Hi I have a php script that checks if the data is new and if it is it put's it in a diffrent div then if it was read already

but it's not working!

here's the code.

while ($row1 = mysql_fetch_assoc($sql1)) {
if($row1['new'] == true) {
$message = $row1['message'];
echo "<div id='postsn'>{$message}</div><br/>";
$sql2 = "UPDATE streamline SET new='false' WHERE message='{$message}'";
$sql3 = mysql_query($sql2) or die(mysql_error());
}else if($row1['new'] == false) {
echo "<div id='postso'>{$row1['message']}</div><br/>";
}
}

I looked in the database and it said it was false.

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.