hi i need help i want it to do once you have checked 3 check boxes the submit buttinon appears and it will be all on one page i think this might work but donno =
<?
if(isset($_POST['q1'])) $q1="set";
if(isset($_POST['q2'])) $q2="set";
if(isset($_POST['q3'])) $q3="set";
if($q1 != '' && $q2 != '' && $q3 != ''){
echo'<input type="submit" name="submit" value="Continue" />';}
else{
echo"Please Check All Boxes";}
?>
can you tel me wots ronge