Quote:
|
The values are $phpBByes & $phpBBno.
|
No. The variables are named $phpBByes & $phpBBno. The
values of the variables is what actually gets placed into the HTML form. So determine what the values are placed in the form during script execution. Easy way, run the PHP script in browser, do a view source. Better way, debug the PHP script, as in.
print "BByes= ". $phpBByes;
print "BBno= ". $phpBBno;
//then code for HTML form
Then in handler:
print "form post val = ". $_POST['phpBB'];
.....
Wonder if:
if((!$phpBB)){
is even applicable, as return should be string (value attribute of form element), not boolean???
Don't have my PHP code handy, else, could tell you...