Search results

  1. J

    php logging in problems?

    Warning: mysql_num_rows(): supplied argument is not a valid MySQL result resource in /home/sean/public_html/login.php on line 24 Incorrect username or password! line 24 from login.php $rowcount= mysql_num_rows(mysql_query($login)); ¬_¬ do I have to add my username and password here?
  2. J

    Php logging in problems?

    Warning: mysql_num_rows(): supplied argument is not a valid MySQL result resource in /home/sean/public_html/login.php on line 24 Incorrect username or password! line 24 from login.php $rowcount= mysql_num_rows(mysql_query($login)); ¬_¬ do I have to add my username and password here? It...
  3. J

    Php logging in problems?

    Warning: mysql_num_rows(): supplied argument is not a valid MySQL result resource in /home/sean/public_html/login.php on line 24 Incorrect username or password! line 24 from login.php $rowcount= mysql_num_rows(mysql_query($login)); ¬_¬ do I have to add my username and password here? It...
  4. J

    php logging in problems?

    <?php require("connect.php"); $post_username = $_POST['username']; $post_password = $_POST['password']; if ($post_username&&$post_password) { if(strlen($post_username)>25||strlen($post_password)>15) die("Username or password character length too long!"); else { //convert...
  5. J

    Where would you like to ask?Where can I find php code online I can download for free?

    So I can create a simple login and registration?
Back
Top