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
Share on other sites

The process is simple:

 

<input type="checkbox" value="foo"<?php isset($somevar) && $somevar == 'foo' ? ' selected="selected"' : ''; ?>>

 

If $somevar is defined and equals 'foo' your checkbox will be selected.

Link to comment
Share on other sites

Thanks for the replies.

I can create the checkbox and get the value from it..

 

The problem I have is more with setting and unsetting the session and also showing the state of the checkbox depending how the session is set.

 

Can someone help with this ?

Thanks

Link to comment
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

 

 

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.