Jump to content

Using if empty with two items


dprichard

Recommended Posts

I am trying to say if $_Post and $_Session are empty set the variable $dcparent to equal 1, but it doesn't like what I am doing.  Any help would be greatly appreciated.

 

if(isset($_POST['dcparent'])) {
$dcparent = mysql_real_escape_string($_POST['dcparent']);
}

if(isset($_SESSION['dcparent'])) {
$dcparent = mysql_real_escape_string($_SESSION['dcparent']);
}

if(empty($_POST['dcparent']) && (empty($_SESSION['dcparent'])) {
$dcparent = 1;
}

Link to comment
Share on other sites

Try this ok.

 

fully working tested.

 

with a form.

<?php session_start();

$_SESSION['dcparent']=$a;
$b=$dcparent;

if(isset($_POST['submit'])){

if(empty($_POST['a']) && (empty($_POST['b'])))) {
$b = 1;
}
}
echo $b;
?>

 

without a form

<?php session_start();

$_SESSION['dcparent']=$a;
$b=$dcparent;

if( (empty($_POST['a']) && (empty($_POST['b'])))) {
$b = 1;
}

echo $b;
?>

Link to comment
Share on other sites

just echo them first liek so...

 

<?php
echo "POSTdcparent = ". $_POST['dcparent'] . " &  SESSIONdcparent = " . $_SESSION['dcparent'] . " |<br />";

$dcparent = NULL;

if(isset($_POST['dcparent'])) {
$dcparent = mysql_real_escape_string($_POST['dcparent']);
}
echo "new par = " . $dcparent . "<br />";
if(isset($_SESSION['dcparent'])) {
$dcparent = mysql_real_escape_string($_SESSION['dcparent']);
}
echo "new par = " . $dcparent . "<br />";
if(empty($_POST['dcparent']) && (empty($_SESSION['dcparent'])) {
$dcparent = 1;
}

echo "new par = " . $dcparent . "<br />";
?>

 

See what the are and which if statement is setting a value...

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.