Jump to content

Remember Checkbox State..


TomT

Recommended Posts

Hi

I'm hoping someone can point me in the right direction.

 

I'm trying to create a single page that contains a couple of checkboxes.

When the first checkbox is checked I want to set a session.

When the second chechbox is checked I want to set a different session.

 

When the page submits ( to itself ) I'd like the checkboxes to reflect if they are checked or not.

 

I can sort of do that part,but I'm having major issues with unsetting the sessions and updating the checkboxes to reflect this.

 

Does anyone have a simple example on how to do this.

 

Many Thanks :)

Link to comment
https://forums.phpfreaks.com/topic/262769-remember-checkbox-state/
Share on other sites

$cb1_checked = isset($_SESSION['cb1']) && $_SESSION['cb1']==1 ? 'checked' : '';
$cb2_checked = isset($_SESSION['cb2']) && $_SESSION['cb2']==1 ? 'checked' : '';

echo "input type='checkbox' name = 'cb1' value='1' $cb1_checked /> CB1
echo "input type='checkbox' name = 'cb2' value='1' $cb2_checked /> CB2

 

 

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.