nathanmaxsonadil Posted August 29, 2007 Share Posted August 29, 2007 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. Quote Link to comment https://forums.phpfreaks.com/topic/67264-solved-checking-if-new-does-not-work/ Share on other sites More sharing options...
trq Posted August 29, 2007 Share Posted August 29, 2007 Your checking for booleens yet storing strings. Try... if($row1['new'] == 'true') { Quote Link to comment https://forums.phpfreaks.com/topic/67264-solved-checking-if-new-does-not-work/#findComment-337407 Share on other sites More sharing options...
nathanmaxsonadil Posted August 29, 2007 Author Share Posted August 29, 2007 now is display's nothing..... Quote Link to comment https://forums.phpfreaks.com/topic/67264-solved-checking-if-new-does-not-work/#findComment-337408 Share on other sites More sharing options...
nathanmaxsonadil Posted August 29, 2007 Author Share Posted August 29, 2007 I only changed true that was my mistake Quote Link to comment https://forums.phpfreaks.com/topic/67264-solved-checking-if-new-does-not-work/#findComment-337425 Share on other sites More sharing options...
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.