I just installed NuSphere yesterday, and so far everything is working like a dream except...
I have a script that depends on a postback (a login script).
I've used LanuchBox to save my variable's values.
When I do this:
foreach($_POST as $key => $val){
print "$key ... $val<BR>";
} |
This is printed to the screen:
entered_id ... test1
entered_password ... test2
Just under that I do this:
print "DEBUG...$entered_id...$entered_password<BR>"; |
This is printed to the screen:
DEBUG......
What am I missing?