Hi,
I have one problem with form action above.
<form action="<?php echo $PHP_SELF?>" method="post" name="loginform" >
I am using one script on two different servers. On one server it’s work fine, but on other I have problem.
I have login form, and authorisation script on same page.
If (login) {
do authorisation
} else {
login form }
As I said, on one server this script work but on other doesn’t.
When I put auth script on other page (<form action = check.php>) it works.
So, problem is with $PHP_SELF code.
Why?
Is there problem with PHP version on server?
Thank’s in advance
MiTja