Forum Moderators: coopster
The HTML form which is meant for logging n the members is supposed to take them to the index page upon successful submission.. but nothing happens . not even the error msg.
Same is the case with the signup form.
I also tried tweaking the options in IE6 towards lower security..I thought may be it doesn't allow session variables to be created.. but even that didn't work.
Please help .. is this a common problem with IE6?
If you have something similar to
if (isset($_POST['submit'])) {...}
Try changing to
if ( (isset($_POST['submit'])) ¦¦ (isset($_POST['submit_x'])) ) {...}
HTH,
JP