11-18-2007, 12:45 AM
|
#1 (permalink)
|
|
The Addict
Join Date: Nov 2007
Location: USA
Posts: 256
Thanks: 7
|
reading from a form
PHP Code:
if(!isset($_POST[$sd_Burning])) {
$sd_Burning = "";
} else {
$sd_Burning = $_POST[$sd_Burning];
}
PHP Code:
<input type="checkbox" name="sd_Burning" /> Burning
This is the code im using when my form is submitted. All should but doing is checking if the checkbox sd_Burning is checked or not. But it does nothing. the second is my checkbox in the form.
Any ideas what im doin wrong here?
Last edited by CoryMathews : 11-18-2007 at 02:24 PM.
|
|
|
|