php-db | 2001071
Date: 07/08/01
- Next message: Matthew Loff: "RE: [PHP-DB] Dynamic SQL + result resource error"
- Previous message: Matthew Loff: "RE: [PHP-DB] Dynamic SQL + result resource error"
- In reply to: Matthew Loff: "RE: [PHP-DB] Dynamic SQL + result resource error"
- Next in thread: Matthew Loff: "RE: [PHP-DB] Dynamic SQL + result resource error"
- Reply: Matthew Loff: "RE: [PHP-DB] Dynamic SQL + result resource error"
- Messages sorted by: [ date ] [ thread ] [ subject ] [ author ]
Sure he is. Right here:
$queryResult = mysql_query($sql);
what exact error is occurring?
-----Original Message-----
From: Matthew Loff [mailto:matt <email protected>]
Sent: Sunday, July 08, 2001 5:00 PM
To: 'Mark Gordon'; php-db <email protected>
Subject: RE: [PHP-DB] Dynamic SQL + result resource error
You aren't calling mysql_query() to execute the query.
//$find is text box input
$wordsarray = explode(" ",$find);
$sql = "SELECT bandname FROM bands WHERE (bandname
LIKE ";
$i = 0;
while ($i < count($wordsarray))
{
$word = current($wordsarray);
next($wordsarray);
$sql=$sql."$word)";
$i++;
}
print "$sql<hr>";
$queryResult = mysql_query($sql);
while ($myrow=mysql_fetch_row($queryResult))
{
print "$myrow[0],<p>";
}
-----Original Message-----
From: Mark Gordon [mailto:eyesyte <email protected>]
Sent: Sunday, July 08, 2001 7:54 PM
To: php-db <email protected>
Subject: [PHP-DB] Dynamic SQL + result resource error
Why is this code generating an error when it outputs a
valid SQL statement? (there are no parse errors)
//$find is text box input
$wordsarray = explode(" ",$find);
$sql = "SELECT bandname FROM bands WHERE (bandname
LIKE ";
$i = 0;
while ($i < count($wordsarray))
{
$word = current($wordsarray);
next($wordsarray);
$sql=$sql."$word)";
$i++;
}
print "$sql<hr>";
while ($myrow=mysql_fetch_row($sql))
{
print "$myrow[0],<p>";
}
=====
Mark
eyesyte <email protected>
__________________________________________________
Do You Yahoo!?
Get personalized email addresses from Yahoo! Mail
http://personal.mail.yahoo.com/
-- PHP Database Mailing List (http://www.php.net/) To unsubscribe, e-mail: php-db-unsubscribe <email protected> For additional commands, e-mail: php-db-help <email protected> To contact the list administrators, e-mail: php-list-admin <email protected>-- PHP Database Mailing List (http://www.php.net/) To unsubscribe, e-mail: php-db-unsubscribe <email protected> For additional commands, e-mail: php-db-help <email protected> To contact the list administrators, e-mail: php-list-admin <email protected>
-- PHP Database Mailing List (http://www.php.net/) To unsubscribe, e-mail: php-db-unsubscribe <email protected> For additional commands, e-mail: php-db-help <email protected> To contact the list administrators, e-mail: php-list-admin <email protected>
- Next message: Matthew Loff: "RE: [PHP-DB] Dynamic SQL + result resource error"
- Previous message: Matthew Loff: "RE: [PHP-DB] Dynamic SQL + result resource error"
- In reply to: Matthew Loff: "RE: [PHP-DB] Dynamic SQL + result resource error"
- Next in thread: Matthew Loff: "RE: [PHP-DB] Dynamic SQL + result resource error"
- Reply: Matthew Loff: "RE: [PHP-DB] Dynamic SQL + result resource error"
- Messages sorted by: [ date ] [ thread ] [ subject ] [ author ]

