I have a login page, and in the form tag I have the action set to:
Now I have tried both of these setups:
And nothing happens. When I do a view source, this is what I see:
This page used to work until I upgraded to apache 1.3.26 & php 4.2.3 . Would the upgrade have anything to do with it?
Code:
action="<?php echo $PHP_SELF; ?>"
Now I have tried both of these setups:
Code:
<form name="login" method="post" action="<?php echo $PHP_SELF; ?>">
<form name="login" method="post" action="<?php echo ($_SERVER[$PHP_SELF]); ?>">
And nothing happens. When I do a view source, this is what I see:
Code:
<form name="login" method="post" action="">
This page used to work until I upgraded to apache 1.3.26 & php 4.2.3 . Would the upgrade have anything to do with it?