Jump to content

3 way if / elseif query problem


wmguk

Recommended Posts

Hey,

 

I have a table, and i have 3 fields, tel, mob and email

 

if tel is empty then show mob, if tel and mob is empty then show email....

 

I've used this code, but its not right as it never seems to show the email...

 

can anyone help?

 

if ($tel != '' || $tel != ' ')
{ $contactdetails = "$tel"; } 
elseif ($tel == '' || $tel == ' ' && $mob != '' || $mob != ' ')
{ $contactdetails = "$mob"; }
else
{ $contactdetails = "$email"; }

Link to comment
https://forums.phpfreaks.com/topic/146873-3-way-if-elseif-query-problem/
Share on other sites

the logic is confusing

here

elseif ($tel == '' || $tel == ' ' && $mob != '' || $mob != ' ')

try

elseif ( ($tel == '' || $tel == ' ') && ($mob != '' || $mob != ' '))

 

But you don't really need to check the $tel, as you know its empty

 

heres my route

 

<?php
if(!empty(trim($tel)))
{
$contactdetails = $tel;
}elseif(!empty(trim($mob))){
$contactdetails = $mob;
}else{
$contactdetails = $email;
}

?>

the logic is confusing

here

elseif ($tel == '' || $tel == ' ' && $mob != '' || $mob != ' ')

try

elseif ( ($tel == '' || $tel == ' ') && ($mob != '' || $mob != ' '))

 

But you don't really need to check the $tel, as you know its empty

 

heres my route

 

<?php
if(!empty(trim($tel)))
{
$contactdetails = $tel;
}elseif(!empty(trim($mob))){
$contactdetails = $mob;
}else{
$contactdetails = $email;
}

?>

 

Hey, Yeah i agree, i was a little off the mark really, I've done this but I get a parse error, and white page displayed, any ideas?

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.