Jump to content

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?

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.