craigbabe Posted April 29, 2006 Share Posted April 29, 2006 I have searced and tried so many things Im just out of ideas.. My hose went down and when it came back up people could not log back in..When you are not logged in you are redirected to a login page..[code]$CookieUser = $_SESSION['name'];$CookiePass = $_SESSION['pass'];$domain = "http://www.simupets.com";echo"<br> <form method=\"post\" action=\"$domain/login.php\"> <input type=\"hidden\" name=\"act\" value=\"login\"> <input name=\"username2\" class=\"inputf\" size=\"9\" value=\"username\"onblur=\"if(this.value=='') this.value='username';\" onfocus=\"if(this.value=='username') this.value='';\"><br> <input class=\"inputf\" name=\"password2\" size=\"9\" type=\"password\"value=\"Password\" onblur=\"if(this.value=='') this.value='Password';\" onfocus=\"if(this.value=='Password')this.value='';\"><br> <input type=\"submit\" class=\"submit\" value=\"Login\"> </form><br>";[/code]This is what I have for my user auth[code]if($act=="login") { require('login/login.php'); } if($act == "in") { require('login/login.php'); } if(!$act) { if(!$CookieUser) { require('login/form.php'); // I always get this outcome } else { require('login/login.php'); } }[/code]I dont know whats wrong... I used $_POST['act'] but I get a white space error.. It seems the infomation in the form is not being submitted or something? Can anyone figure the problem? Quote Link to comment Share on other sites More sharing options...
michaellunsford Posted April 29, 2006 Share Posted April 29, 2006 Hey, very awesome javascripting --- I wrote something similar to this a while back -- but it was way bulky. Very smooth. I'm impressed!On the problem at hand: It's tough to see the exact progress of your login with all the missing code -- but when I get errors that make no sense (like this one), I always test with a quick print_r($_POST); just to see what is hiding in the $_POST array. Most of the time it answers whatever question I have. Quote Link to comment Share on other sites More sharing options...
craigbabe Posted April 29, 2006 Author Share Posted April 29, 2006 Thankyou, Javascript is so handy :).Thanyou you are a bloody legend! It worked I figured out from there :D Thanks so much! Quote Link to comment Share on other sites More sharing options...
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.