I have two radio buttons n my programme but when i run it none of them is checked, I want one of them to be checked by default, how can i achieve this ?

<li><input type="radio" name="r1" value="o" onClick="submit();" <?php echo ($_SESSION['r1'] == "o") ? 'checked="checked"' : ''; ?> />On</li>
<li><input type="radio" name="r1" value="p" onClick="submit();" <?php echo ($_SESSION['r1'] == "p") ? 'checked="checked"' : ''; ?> />Off</li>

I want the 'On' button to be checked when i open the page for the first time

link|improve this question

70% accept rate
feedback

4 Answers

up vote 0 down vote accepted

Something like this:

<li><input type="radio" name="r1" value="o" onClick="submit();" CHECKED/>On</li>
link|improve this answer
feedback

What about this:

<li><input type="radio" name="r1" value="o" onClick="submit();" <?php echo (!$_SESSION['r1'] || $_SESSION['r1'] == "o") ? 'checked="checked"' : ''; ?> />On</li
link|improve this answer
it worked :) but i don't know how ? – Xufyan Jan 15 at 10:54
yeah, that's what i've said 19 seconds ago. – develroot Jan 15 at 10:56
the statement !$_SESSION['r1'] checks it the value is set at all. if not, checked will be set. – zaphod1984 Jan 15 at 10:57
feedback

Here you go:

<li><input type="radio" name="r1" value="o" onClick="submit();" <?php echo ($_SESSION['r1'] != "p") ? 'checked="checked"' : ''; ?> />On</li>
<li><input type="radio" name="r1" value="p" onClick="submit();" <?php echo ($_SESSION['r1'] == "p") ? 'checked="checked"' : ''; ?> />Off</li>
link|improve this answer
if i do this it always remain 'On' , i want it to be 'On' by default but when i select 'Off' , it goes off – Xufyan Jan 15 at 10:45
well, than you have to check your original code. dump the $_SESSION['r1'] and see what it says – develroot Jan 15 at 10:46
<?php session_start(); if (isset($_POST['r1'])){ $_SESSION['r1']=$_POST['r1']; } ?> – Xufyan Jan 15 at 10:51
1  
see my edit, should be working now. When you first access the page, it's On. If you change it to off, it will remain Off. – develroot Jan 15 at 10:55
Thank you very much – Xufyan Jan 15 at 11:03
feedback

Well, in order for the On button to checked, the $_SESSION['r1'] must be equal to "o". Have you checked the value of $_SESSION['r1']?

link|improve this answer
then it always remain 'On', i want it to be 'on' by default but when i 'select 'off' it goes 'off' <?php session_start(); if (isset($_POST['r1'])){ $_SESSION['r1']=$_POST['r1']; } ?> – Xufyan Jan 15 at 10:50
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.