hi
i want to use checkbox in php. i have function for each check should be running when this box is selected.how i can do this.
Printable View
hi
i want to use checkbox in php. i have function for each check should be running when this box is selected.how i can do this.
create 2 file for this.
1.file index.html
2.file post.phpCode:<html>
<form method='post' action='post.php' a>
<input type='checkbox' name='one'>one
<input type='checkbox' name='two'>two
</form>
</html>
Code:<?php
$one=$_POST['one'];
$two=$_POST['two'];
if($one)
{
/*call function one*/
}
if($two)
{
/*call function two*/
}
?>