OK here is the problem. I have HTML for 3 radio buttons embedded within PHP. I use the following snippet for this in my .inc file:
$php_self = $_SERVER['PHP_SELF'];
$reg_str = <<< EOREGSTR
<form method="post" action="$php_self" name ="">
<input type="radio" name="decision" value="accept">accept<BR>
<input type="radio" name="decision" value="reject">reject<BR>
<input type="radio" name="decision" value="interview">interviewcall<br>
<input type="submit" name="submit" value="Submit">
</form>
EOREGSTR;
echo $reg_str;
It is very awkward though, because in my .php file i have an if statement when the submit button is pressed together with the radiobutton decision which is accept for instance and then i have an else statement that echoes something is wrong, but once i load the actual .php file it right away returns me the echo stmt....Then when i comment the radiobuttons out and keep only the submit button, i can successfully enter things in my table, but it is of no use, because i need to tell it to input either accept or reject or interview in the table and thus i need the radiobutton opiton for sure... Has anyone ever had the same problem with PHP reg_str???I think the EOREGSTR does not like radiobuttons for some reason!!!!
🙁