hi my name is jean, i have a problem in PHP. I am fresher of it also. so please give me full answer i want to send the checkbox value into php database. i tried a lot but couldn't do please help me somebody and provide me htmlpage and php page and mysql too thanks in advance!
You need to go back to basics and write a basic php script with a form, the checkbox and a submit button. Make it a get form and when you test for $_GET echo out the values that are returned. Saving to the database is standard, no need to send you the mysql - and you'll do better if you learn it step by step.
I think you failed because it maybe wrong type of datatype when you use SQL INSERT command. Try to convert data to 0-1 before execute SQL command like this: $checked = isset($_POST['checked']) ? "1" : "0"; Good luck!
check out the following functions in php php.net/isset php.net/print_r php.net/foreach php.net/$_POST php.net/$_SERVER (for the $_SERVER['REQUEST_METHOD'] check == "post") and ofcource you need to know how checkboxes work in html/forms. Good luck!