Jump to content

$ in mysql field


imperium2335

Recommended Posts

I have tried that, the php is comparing what the user selected from a drop down box e.g. Under £500 or $750

 

Then in the database i have afew test records, some have Under £500 or $750 as a varchar. But if i try to search for records with Under £500 or $750 i get a white page (doesnt work, dont know how to get php error handling to work on my localhost im using apache).

 

Cheers.

Link to comment
Share on other sites

its not that im sure, off top of my head i remember what my code is:

 

$pricex = "price LIKE '%$price%'";

 

then the query that returns $pricex

 

I am affraid I don't really understand what you mean...

 

the % stand for the * you would use in Google

 

Link to comment
Share on other sites

in that case, the query would only return the cells that contain exactly the value of $price.

 

for instance

if you have

$price = "cheap";

 

if you don't put any % in the query

$q = "price LIKE '$price'";

 

it would return only

cheap

 

if you put a % in front of it in your query

$q = "price LIKE '%$price'";

 

it would return the cells containing

cheap

very cheap

 

if you put a % behind it

$q = "price LIKE '$price%'";

 

it would return

cheap

cheap a hell

 

and if you use both

$q = "price LIKE '%$price%'";

 

you'd get

cheap

very cheap

very cheap indeed

cheap as hell

Link to comment
Share on other sites

Hi

 

Php is not going to do a variable substitution for a string which has had a variable concatenated into it whcih just happens to contain a $. It is did then potentially it would create an infinate loop.

 

If you had a variable assignment that was $burt = "hello there ".$fred; while $fred contained '$bill' and you had a variable called $bill containing 100 then you could manage to get $burt to contain "hello there 100" with:-

 

$burt = "hello there ".$fred;

$burt = eval($burt);

 

All the best

 

Keith

Link to comment
Share on other sites

Hey guys thanks for your help. I will try your ideas when i get home.

 

dgoosens you answered a question i didn't think of yet :D

 

I was going to ask how to check fields that had many keywords in them and return the result if the user entered just one of them. I guess using your explanations I can do that quite easily, thanks!

Link to comment
Share on other sites

Here is my code:

 

<?PHP

if (!file_exists("dbconnect.php"))

{

die("Database settings not found, administrator intervention required.") ;

}

else

{

require("dbconnect.php") ; //Must connect to the database.

}

 

$word = $_REQUEST['word'] ; //Variables from the form.

$type = $_REQUEST['type'] ;

$flavor = $_REQUEST['flavor'] ;

$tiers = $_REQUEST['tiers'] ;

$serves = $_REQUEST['serves'] ;

$price = $_REQUEST['price'] ;

 

$def = "Dont Specify" ;

 

if(!isset($word) || $word == "Enter Search Term" || $word == "")

{

unset($word) ;

}

if($type == $def)

{

unset($type) ;

}

if($flavor == $def)

{

unset($flavor) ;

}

if($tiers == $def)

{

unset($tiers) ;

}

if($serves == $def)

{

unset($serves) ;

}

if($price == $def)

{

unset($price) ;

}

 

if(!isset($word) && !isset($type) && !isset($flavor) && !isset($tiers) && !isset($serves) && !isset($price))

{

echo "You did not specify any search parameters" ;

die ;

}

 

if(isset($word))

{

$wordx =  "tags LIKE '%$word%'" ;

}

 

if(isset($type))

{

if(isset($word))

{

$typex = "&& type LIKE '%$type%'" ;

}

else

$typex = "type LIKE '%$type%'" ;

}

 

if(isset($flavor))

{

if(isset($word) || isset($type))

{

$flavorx = "&& flavor LIKE '%$flavor%'" ;

}

else

$flavorx = "flavor LIKE '%$flavor%'" ;

}

 

if(isset($tiers))

{

if(isset($word) || isset($type) || isset($flavor))

{

$tiersx = "&& tiers LIKE '%$tiers%'" ;

}

else

$tiersx = "tiers LIKE '%$tiers%'" ;

}

 

if(isset($serves))

{

if(isset($word) || isset($type) || isset($flavor) || isset($tiers))

{

$servesx = "&& serves LIKE '%$serves%'" ;

}

else

$servesx = "serves LIKE '%$serves%'" ;

}

 

if(isset($price))

{

if(isset($word) || isset($type) || isset($flavor) || isset($tiers) || isset($serves))

{

$pricex = "&& price LIKE '%$price%'" ;

}

else

$pricex = "price LIKE '%$price%'" ;

}

 

$query = "SELECT * FROM image_bank WHERE $wordx $typex $flavorx $tiersx $servesx $pricex" ;

 

$result = mysql_query($query) ;

 

while($row = mysql_fetch_array($result, MYSQL_ASSOC))

{

$dbtags = $row['tags'] ;

$dbtiers = $row['tiers'] ;

$dbtype = $row['type'] ;

$dbflavor = $row['flavor'] ;

$dbserves = $row['serves'] ;

$dbprice = $row['price'] ;

$imgurl = $row['url'];

$thumburl = $row['thumb_url'] ;

 

echo "$dbtags" . "<br />" ;

echo "$dbtiers" . "<br />" ;

echo "$dbtype" . "<br />" ;

echo "$dbflavor" . "<br />" ;

echo "$dbserves" . "<br />" ;

echo "$dbprice" . "<br />" ;

echo '<a href="' . "$imgurl" . '">' . "$imgurl" . "</a>" . "<br />" ;

echo '<img src="' . "$thumburl" . '" height="100" width="50" />' ;

 

 

}

 

include("dbdisconnect.php") ;

 

?>

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.