Computer ForumsComputers  

Go Back   Computer Forums > Programmers Lounge > Programming Discussions

Reply
 
LinkBack Thread Tools Display Modes
Old 05-10-2006, 06:39 AM   #1 (permalink)
Newb Techie
 
Join Date: Apr 2006
Posts: 10
Default problem with PHP

I have a problem with following php-code:

Code:
<? if ($a == 1) 
	echo "a";
	if ($a == 0) {
	echo "";
} else {
	echo "b";
	}
	?>
When "$a = 0", it shows nothing.
When "$a = 1" , it shows "ab".
When "$a = 2" or above it shows "b".

What am I doing wrong, why does it show "ab", when "$a=1"

Hoping for soon answers

Regards
Beosound
beosound is offline   Reply With Quote
Old 05-10-2006, 07:38 AM   #2 (permalink)
Dope Tech
 
Join Date: Jan 2004
Posts: 3,589
Send a message via ICQ to office politics Send a message via AIM to office politics Send a message via Yahoo to office politics
Default

if a = 1 it displays a

then it evaluates the second if else

so since a is not 0, it echo's b

to prevent b from being displayed, put a else after echo a.

Code:
<? if ($a == 1) 
	echo "a";
          else {
	if ($a == 0) 
	      echo "";
                else 
    	     echo "b";
	}
	?>

__________________
Tech IMO.com | ExtremeTech.com | ASP Free.com | SysOpt.com | Tech Support Guy.org
DB Forums.com | Cyber Tech Help.com | Lazy Forums.com | Warrior Nation.net

'If you don't stand for somethin you'll fall for anything' - Dr. Dre Been there, done that
office politics is offline   Reply With Quote
Old 05-10-2006, 07:51 AM   #3 (permalink)
Newb Techie
 
Join Date: Apr 2006
Posts: 10
Default

Quote:
Originally posted by csamuels
if a = 1 it displays a

then it evaluates the second if else

so since a is not 0, it echo's b

to prevent b from being displayed, put a else after echo a.

Code:
<? if ($a == 1) 
	echo "a";
          else {
	if ($a == 0) 
	      echo "";
                else 
    	     echo "b";
	}
	?>
Ah... Thanks :)
beosound is offline   Reply With Quote
Reply

Thread Tools
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On



All times are GMT -5. The time now is 08:09 AM.


Powered by vBulletin® Version 3.7.1
Copyright ©2000 - 2008, Jelsoft Enterprises Ltd.
Content Relevant URLs by vBSEO 3.1.0