I have a page that has this checkbox and an if statement. As you can see, the checkbox is defaulted to be checked so value should be "ON", but it always goes into the else loop and displays for me that $delete_link is null. What am I doing wrong? Thanks!
<input type="checkbox" name="delete_link" value="ON" checked
<?PHP if($delete_link == 'ON'){$action_url = 'in if';}else {$action_url = 'in else';}
?>
Thanks in advance, Tin