Jump to content

Why does this always echo the same thing?!


ActaNonVerba1

Recommended Posts

	if ($TypeOfPage == 'englandtrinityhouse' || 'welshtrinityhouse' || 'channelislandstrinityhouse'){
	  	$Op = '<input type="text" name="Operator" value="Trinity House" class="Operator">';
}
else {
	if ($TypeOfPage == 'northernlighthouseboard'){
		$Op = '<input type="text" name="Operator" value="Northern Lighthouse Board" class="Operator">';	
	}
	else {
		$Op = '<input type="text" name="Operator" class="Operator">';
	}
}

 

This code always echos the first option when echo'd. Ive checked the var is different each time, eg 'northernlighthouseboard' or 'private'.

 

Anyone care to explain?!

danny

Link to comment
Share on other sites

From a different perspective:

 

/* just in the event case is ALSO an issue */
$TypeOfPage = trim(strtolower($typeOfPage));
/* create an array of values */
$array_one = array("englandtrinityhouse", "welshtrinityhouse", "channelislandstrinityhouse");
$Op = '<input type="text" name="Operator" class="Operator">';
if(in_array($TypeOfPage, $array_one)) {$Op = '<input type="text" name="Operator" value="Trinity House" class="Operator">';}
if($TypeOfPage == 'northernlighthouseboard'){ $Op = '<input type="text" name="Operator" value="Northern Lighthouse Board" class="Operator">';}

Link to comment
Share on other sites

You can't just string together the || 'or' conditions like that. Each must be valid on its own.

 

	if ($TypeOfPage == 'englandtrinityhouse' || $TypeOfPage == 'welshtrinityhouse' || $TypeOfPage == 'channelislandstrinityhouse'){

 

Thanks :)

 

To the above, i would use your method but im not 100% confident with arrays yet so do not fully understand it :(

Link to comment
Share on other sites

This thread is more than a year old. Please don't revive it unless you have something important to add.

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Restore formatting

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

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