Jump to content

[SOLVED] check box, problem 2


DeanWhitehouse

Recommended Posts

with this code

}
if(isset($_POST['hideemail']) == 0)
{
mysql_query("UPDATE $user 
SET show_email = '0' 
WHERE user_id = '$user_id'")or die('Could not change settings: ' . mysql_error());
}
elseif(isset($_POST['hideemail']) == 1)
{
mysql_query("UPDATE $user 
SET show_email = '1' 
WHERE user_id = '$user_id'")or die('Could not change settings: ' . mysql_error());
}
echo "Settings Saved";
}

 

its changing the show_email even when i don't tick either box, it shouldn't be doing this, it should only do this if it is ticked.

 

Link to comment
Share on other sites

if(isset($_POST['hideemail']) == 0)

 

that line makes no sense.

 

try:

 

}
if(empty($_POST['hideemail']))
{
mysql_query("UPDATE $user 
SET show_email = '0' 
WHERE user_id = '$user_id'")or die('Could not change settings: ' . mysql_error());
}
else
{
mysql_query("UPDATE $user 
SET show_email = '1' 
WHERE user_id = '$user_id'")or die('Could not change settings: ' . mysql_error());
}
echo "Settings Saved";
}

Link to comment
Share on other sites

}

if((isset($_POST['hideemail'])) && ($_POST['hideemail'] == 0))

{

mysql_query("UPDATE $user

SET show_email = '0'

WHERE user_id = '$user_id'")or die('Could not change settings: ' . mysql_error());

echo "Settings Saved";

        }

elseif((isset($_POST['hideemail'])) && ($_POST['hideemail'] == 1))

{

mysql_query("UPDATE $user

SET show_email = '1'

WHERE user_id = '$user_id'")or die('Could not change settings: ' . mysql_error());

        echo "Settings Saved";

}

        else {

        echo "Invalid hide email 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.