You forgot to escape (\") a quotationmark (") on line 43
causing an error.
After having fixed that I get a form, with option buttons.
When I click for example the 4th button and hit submit, it prints ^^ seems to work.
It is possible that your server doesn't understand "$HTTP_GET_VARS['radiobutton'];"
you could try using "$_POST['radiobutton'];" or "$_REQUEST['radiobutton'];"
<?php function reply_to_thread($user,$problem=NULL) {
if($user["nice"] === TRUE) { give_possible_solution($problem);}
else { exec($user,'code_fail',undefined); }
return TRUE; } ?>
Bookmarks