Setting php session variable on checkbox click

0

Using jquery we can set php session variable which is quite handy

You would definitely put some input validations

Html part

<input type="checkbox"
onchange="$.get('/set_item.php?push='+this.checked);">

The php part, set_item.php file

<?php

@session_start();
$_SESSION['myVar'] = $_REQUEST['push'];
exit;

?>

Get Free Email Updates!

Signup now and receive free offers, discounts & coupon codes

I agree to have my personal information transfered to Mad Mimi ( more information )

I will never give away, trade or sell your email address. You can unsubscribe at any time.

Leave a Reply

Your email address will not be published. Required fields are marked *

CommentLuv badge

This site uses Akismet to reduce spam. Learn how your comment data is processed.