Jump to content

Help with variables


thomasw_lrd

Recommended Posts

I've got a select statement that looks like this in php.

$sql = "Select * from inventory where ".$fields."".$operator."".$criteria;

Everything posts correctly, everything is dereferenced correctly.    My only question is how do I get $criteria have single quotes around it?

 

So that when I actually run the query it says

 

select * from inventory where field = 'value';

 

 

I've tried

$sql = "Select * from inventory where ".$fields."".$operator.""'.$criteria';

$sql = "Select * from inventory where ".$fields."".$operator.""'$criteria';

and a bunch of variations like that. 

 

Thanks for you help.

 

 

Link to comment
https://forums.phpfreaks.com/topic/262317-help-with-variables/
Share on other sites

Archived

This topic is now archived and is closed to further replies.

×
×
  • 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.