jaic Posted October 30, 2006 Share Posted October 30, 2006 Hi, I am have only recently started PHP, and I have added some functions to my website, but I cant get itto do what I want at the later stage after "LOGIN".Can anyone help?This is what i want to do on my site www.jaicpromotions.co.uk, go to 4DJ's, then LOGIN, using this:User: jaicpromotionsPassword: superdjProblem 1The next screen i want to be black background and "ACCESS DJ AREA" in orange in the middle of the page, underlinedProblem 2If you DONT submit the correct USERID and PASSWORD, then the same with "ACCESS DENIED" in orange in the middle of the page, underlinedThe Code I have at the moment, is:<?phpsession_start();$_SESSION['username'] = $_POST['user'];$_SESSION['userpass'] = $_POST['pass'];$_SESSION['authuser'] = 0;//check username and password informationif (($_SESSION['username'] == 'jaicpromotions') and ($_SESSION['userpass'] == 'superdj')) {$_SESSION['authuser'] = 1;} else {echo "ACCESS DENIED"; exit();}?><html><head><title>Get To DJ Exclusive Page</title></head><body><?php$myfavrecord = urlencode("Untouchable 3");echo "<a href='\\/www.jaicpromotions.co.uk/4djs.htm'>";echo "ACCESS DJ AREA";echo "</a>";?></body></html>can anyone please help me??? your help will be greatly appreciated! ;) Link to comment https://forums.phpfreaks.com/topic/25601-web-development-phphtml-help/ Share on other sites More sharing options...
wildteen88 Posted October 30, 2006 Share Posted October 30, 2006 Please do not double post threads. You've already asked this, in this forum within a thread called [b] cOlouR mE thIs, coLOUr Me thAt <?>[/b]. Link to comment https://forums.phpfreaks.com/topic/25601-web-development-phphtml-help/#findComment-116915 Share on other sites More sharing options...
Recommended Posts