Jump to content

Web Development PHP/HTML HELP


jaic

Recommended Posts

Hi, I am have only recently started PHP, and I have added some functions to my website, but I cant get it
to 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: jaicpromotions
Password: superdj

Problem 1
The next screen i want to be black background and "ACCESS DJ AREA" in orange in the middle of the page, underlined

Problem 2
If you DONT submit the correct USERID and PASSWORD, then the same with "ACCESS DENIED" in orange in the middle of the page, underlined

The Code I have at the moment, is:

<?php
session_start();
$_SESSION['username'] = $_POST['user'];
$_SESSION['userpass'] = $_POST['pass'];
$_SESSION['authuser'] = 0;

//check username and password information
if (($_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
Share on other sites

Guest
This topic is now closed to further replies.
×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.