I made a set of forms for a login-type thing. The only problem is that for some reason, once the action (index.php) occurs, it doesn't even realize that the variables are set...
For example, I have a form with two input boxes named "bob_1" and "bob_2". There is also a submit button. (to send you to index.php specified in action)
When I goto index.php, it includes a file for functions, etc, used by all pages. (handler.php) handler.php then echoes these variables -- $bob_1 and $bob_2... However, nothing echoes -- they are not being used (ala isset($bob_1) and isset($bob_2))
Anyone see any problems? I have a feeling the problem is something incredibly stupid.