Jump to content

how to hide code pieces?


adrianle

Recommended Posts

Thanks for the help.. that defnitely helped with the address question..

 

now, how would I modify this so that if the email field is blank, then the page just skips that line and goes to the next value?

 

Like this? ..

if (!empty($address1) || !empty($address2)) {
  echo "Here they are.... $address1 + $address2";
} else { 
  //do nothing, or display a warning that one is blank.
}

Like this? ..

if (!empty($address1) || !empty($address2)) {
  echo "Here they are.... $address1 + $address2";
} else { 
  //do nothing, or display a warning that one is blank.
}

Link to comment
Share on other sites

now, how would I modify this so that if the email field is blank, then the page just skips that line and goes to the next value?

 

if (!isset($_POST['e-mail']) || !empty($_POST['e-mail'])) { 
   $e-mail = $_POST['e-mail'];
}

 

Basically like that, so it'll only list or assign the e-mail variable if it is not empty in the database, if it is empty then it'll skip the code completely.

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.