Hello Guyz I have a question for you all hope you guyz will help me out.
Here I have created a form with dynamic values if the user select the radio button of no then a text box echo's here are the code which i created please correct me how will i do this.
<?php
$yes = "<input type='radio' name='textfield1a' value='Yes' class='chk' />";
$no = "<input type='radio' name='textfield1a' value='No' class='chk' />";
echo $yes . "Yes";
echo $no . "No" ;
if($no==true){
echo "<input type='text' name='textfield6' class='pw'>". "<br />" ;
}
?>
Please let me know your suggessions
Thank You