View Single Post
Old 11-18-2007, 12:45 AM   #1 (permalink)
CoryMathews
The Addict
 
CoryMathews's Avatar
 
Join Date: Nov 2007
Location: USA
Posts: 256
Thanks: 7
CoryMathews is on a distinguished road
Default 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.
CoryMathews is offline  
Reply With Quote