Jump to content

if statement


fife

Recommended Posts

I have a simple if statment issue.  Here is the code

 

 
<?php 
		$address = $User['address_l1'];

		if (empty($address)) { echo "You have not entered an address";} 
				else {echo "You Have entered an address";}
		?>


 

The variable $address in this case is not empty so it should echo you HAVE entered an address but its echoing NOT.  Can somebody please explain why this is not working?

Link to comment
https://forums.phpfreaks.com/topic/230824-if-statement/
Share on other sites

@maq - I think he was talking about the code in your signature.

Oh, haha.

 

maq is that debug code.  I have never used any can you show me where to put it please?

Yes it is.  These two lines temporarily set error reporting to display and to the maximum.

Link to comment
https://forums.phpfreaks.com/topic/230824-if-statement/#findComment-1188281
Share on other sites

maq is that debug code.  I have never used any can you show me where to put it please?

Yes it is.  These two lines temporarily set error reporting to display and to the maximum.

 

And to clarify, the error reporting code should be placed at the beginning of the script. Or at least above the part you're trying to test.

Link to comment
https://forums.phpfreaks.com/topic/230824-if-statement/#findComment-1188283
Share on other sites

Archived

This topic is now archived and is closed to further replies.

×
×
  • 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.