Jump to content

cOlouR mE thIs, coLOUr Me thAt <?>


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 "[/url]";
?>
</body>
</html>

can anyone please help me???  your help will be greatly appreciated! 
Link to comment
Share on other sites

thanks for your reply but . . .  :-[ that removes the switch between the two outcomes of accept and reject, they are then strung together. . .

perhaps, is there a way of making the unsuccessful entry response show a small phrase under the login box, such as: " Not Recognised ", try again??? Or some thing like this?

Jai
Link to comment
Share on other sites

This thread is more than a year old. Please don't revive it unless you have something important to add.

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Restore formatting

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • 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.