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. 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') { 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..... 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 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
Archived
This topic is now archived and is closed to further replies.