Hello,
A part of a clients script is not passing the variables correctly. The code is used on many other servers and it is not working on this. I am sure there is a server config issue. So the problem is that if you have some code that looks similar to the following it will not go to the $action=="login" part.
PHP Code:
if($action=="login") {
echo 'bla bla';
} else {
echo <<<END
<form action="$PHP_SELF?action=login" method="post">
form contents ....
<input type="submit">
</form>
END;
}
This is similar to the code and it works on every other server I have worked with but not this. Any thoughts.
Thanks!