Date: 07/31/02
- Next message: Dan Koken: "[PHP-DB] Re: adding a space in mysql"
- Previous message: Adam Royle: "[PHP-DB] Re: adding a space in mysql"
- Next in thread: Hutchins, Richard: "RE: [PHP-DB] adding a space in mysql"
- Maybe reply: Hutchins, Richard: "RE: [PHP-DB] adding a space in mysql"
- Reply: Dan Koken: "[PHP-DB] Re: adding a space in mysql"
- Messages sorted by: [ date ] [ thread ] [ subject ] [ author ]
thanks, helpers, but I think I have a simple solution:
I will insert a space at the front of the string,
where the db must accept and retain it.
BTW, here is the SQL I am working with:
//////////////////////////////////////////
elseif ($desc==desc) {
$sql="SELECT bandid, bandname, bandesc, bin_id,
genre
FROM bands, genre WHERE
(bands.genreid=genre.genreid) AND ";
while (list($key, $word)=each($wordsarray))
//$wordsarray from textbox input
{
$sql=$sql."(bandname LIKE '$word %' OR
bandname LIKE '% $word %' OR
bandname LIKE '% $word' OR
bandesc LIKE '$word%' OR
bandesc LIKE '% $word %' OR
bandesc LIKE '% $word' OR
genre LIKE '$word%' OR
genre LIKE '% $word') AND ";
}
$sql=substr($sql, 0, (strlen($sql)-5));
$sql=$sql." ORDER BY genre.genre ASC, bandname ASC";
}
///////////////////////////////////////////////////
If I do "bandname='$var' I would not hit the band 'Red
Letter Day' if the user jusr types 'red'.
__________________________________________________
Do You Yahoo!?
Yahoo! Health - Feel better, live better
http://health.yahoo.com
-- PHP Database Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php
- Next message: Dan Koken: "[PHP-DB] Re: adding a space in mysql"
- Previous message: Adam Royle: "[PHP-DB] Re: adding a space in mysql"
- Next in thread: Hutchins, Richard: "RE: [PHP-DB] adding a space in mysql"
- Maybe reply: Hutchins, Richard: "RE: [PHP-DB] adding a space in mysql"
- Reply: Dan Koken: "[PHP-DB] Re: adding a space in mysql"
- Messages sorted by: [ date ] [ thread ] [ subject ] [ author ]

