Jump to content

Help


reecieboy

Recommended Posts

[!--quoteo(post=362974:date=Apr 9 2006, 08:26 AM:name=theone)--][div class=\'quotetop\']QUOTE(theone @ Apr 9 2006, 08:26 AM) [snapback]362974[/snapback][/div][div class=\'quotemain\'][!--quotec--]
well lets start with basic html. tahoma is not a font family its merely a font face. a family consists of more than one.
but you need to be more specific as to what is not working or what errors its spitting out.
[/quote]


ok fair enough lol. umm [a href=\"http://203.87.72.141/login.php\" target=\"_blank\"]http://203.87.72.141/login.php[/a] mysql fetch array is not a valid resource.. and cheers for this :D
Link to comment
Share on other sites

Use multiple lines for you query so debugging is easier:
[code]<?php
$q = "SELECT * FROM users WHERE userid='". $_POST['username']. "' AND passid='".$_POST['password'] . "'";
$rs = mysql_query($q) or die('Problem with query: ' . $q . '<br />' . mysql_error());
$qquery = mysql_fetch_array($rs);
?>[/code]

Ken
Link to comment
Share on other sites

BTW, here's your code modified to use CSS instead of embedded styles:
[code]
<html>
<head>
<title>PWN|CLAN - Login</title>
<style>
body {
    background-color: Black;
    color: White;
    font-family: Tahoma, sans-serif;
    font-size: 100%;
}
#userpass {
    width: 60px;
    border-color:#777777;
    background-color: #FFFFFF;
    color: #000000;
}

#subm {
    border-color: #777777;
    background-color: #FFFFFF;
    color: #000000;
}
</style>
</head>
<body>

<?php
if (!isset($_POST['submit']) || (isset($_POST['submit']) && $_POST['username'] == '') || (isset($_POST['submit']) && $_POST['password'] == '')) {
        echo "<form name='zlogin' method='POST' action='" . $_SERVER['PHP_SELF'] . "'>";
        echo "Username:&nbsp;&nbsp;<input type='text' name='username' id='userpass'><br>";
        echo "Password:&nbsp;&nbsp;<input type='password' name='password' id='userpass'><br>";
        echo "<input type='submit' name='submit' value='Login' id='subm'>&nbsp;<input type='reset' name='reset' value='Reset' id='subm'>";
        echo "</form>";
    }else {
        mysql_connect("localhost", "***", "***") OR die('password');
        mysql_select_db("main") OR die('Connecting');

        $q = "SELECT * FROM users WHERE userid='". $_POST['username']. "' AND passid='".$_POST['password'] . "'";
        $rs = mysql_query($q) or die('Problem with query: ' . $q . '<br />' . mysql_error());
      $qquery = mysql_fetch_array($rs);
        if ($qquery['username'] == $_POST['username'] && $qquery['password'] == $_POST['password']) {
            session_name('login');
            session_start();
            
            $_SESSION['username'] = $_POST['username'];
            $_SESSION['password'] = $_POST['password'];
            
            echo $fontfamily."Successfully logged in as: ".$_POST['username']."<br><a href='index.php?page=your_account'>Click here to continue...</a></font>";
        }else {
            echo $fontfamily."Login failed,<br><a href='index.php?page=login'>Click here to try again...</a></font>";
    }
            
            


}
?>
</body>
</html>[/code]

Ken
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.