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
https://forums.phpfreaks.com/topic/6938-help/#findComment-25194
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
https://forums.phpfreaks.com/topic/6938-help/#findComment-25198
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
https://forums.phpfreaks.com/topic/6938-help/#findComment-25201
Share on other sites

Archived

This topic is now archived and is 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.