anthonydamasco Posted August 7, 2006 Share Posted August 7, 2006 I'm basicly trying to get this script to workMy MySQL table is called 'joborder' and the field is 'checkedby' by default 'checkedby' is set to post "no one" Basicly I want an if then statment to do thisIf 'checkedby' == value "No one" Then echo ' 'Else include "checkid.html"but I dont know the correct way to do it.[code=php:0] <?php$checkedby = $my_row['checkedby']; if($checkedby == 'no one'){ echo '';}else{ include_once("checkid.html");} ?>[/code]but i know im doing something wrong. Link to comment https://forums.phpfreaks.com/topic/16792-trouble-with-an-if-then-statement/ Share on other sites More sharing options...
Orio Posted August 7, 2006 Share Posted August 7, 2006 Try:[code]<?php$checkedby = $my_row['checkedby'];if(strtolower($checkedby) != "no one"){include_once("checkid.html");} ?>[/code]Orio. Link to comment https://forums.phpfreaks.com/topic/16792-trouble-with-an-if-then-statement/#findComment-70635 Share on other sites More sharing options...
radalin Posted August 7, 2006 Share Posted August 7, 2006 Well try using "No one" instead of "no one". PHP is a case sensitive language just like dbs.Maybe there is a problem with your default post at "no one" try echoing the data you fetch first. See what it's even a space character can break that if statement. "no one" != "no one".Above that logic looks ok Link to comment https://forums.phpfreaks.com/topic/16792-trouble-with-an-if-then-statement/#findComment-70642 Share on other sites More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.