Jump to content

Warning: mysql_num_rows() expects parameter 1 to be resource


grifb

Recommended Posts

help!!! i have been trying things all day with this and it wont work!

 

<html>
<div align="center">

<?php

$key = $_POST['key'];
$answer = $_POST['answer'];
$username = $_POST['username2'];

$item = explode(" ", $key);
$final = $item[0];
$removals = array("a","b","c","d","e","f","g","h","i","j","k","l","m","n","o","p","q","r","s","t","u","v","w","x","y","z");
$lower = str_replace($removals, "", $final);
$newkey = strtolower($lower);

$areplace = str_replace("," , "', '", $answer);
$buff = "['$areplace']";
$finalanswer = strtolower($buff);

if ($key&&$username&&$answer) 
{

$connect = mysql_connect("fakedatabase","fakeuser", "fakepassword") or die("Couldn't Connect");
mysql_select_db("wordlist") or die("No Table");

$query = mysql_query("SELECT * FROM keylist WHERE keys='$newkey'");

$numrows = mysql_num_rows($query);

echo $numrows;
if ($numrows!=0)
{
$queryadduser1 = mysql_query("INSERT INTO userkeys Values('$username', 'Tried : $newkey')") or die("Unable to connect");
die("The key '$newkey' has already been added!");

} 
else 

$queryadd = mysql_query("INSERT INTO keylist Values('$newkey')") or die("Unable to connect");
$queryadd2 = mysql_query("INSERT INTO KeysAndAnswers Values('$newkey', '$finalanswer')") or die("Unable to connect");
$queryadduser1 = mysql_query("INSERT INTO userkeys Values('$username', 'Added : $newkey ')") or die("Unable to connect");
echo("The key '$newkey' and the answer '$finalanswer' Has just been submitted! Thank you!");
}
else
  die("Key or answer or username  was blank");

?>

</div>
</html>

 

 

You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near 'keys='123-123'' at line 1

 

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.