在php中取消双引号

时间:2012-06-18 06:49:12

标签: php sql postgresql

我的PHP代码是:

$query="select company_name from company_names where cik=".$cik;

印刷中的内容

select company_name from company_names where cik=0001001871

我想得到像

这样的输出
select company_name from company_names where cik='0001001871'

如何在PHP中添加单引号?

2 个答案:

答案 0 :(得分:5)

简单地:

$query = "select company_name from company_names where cik = '$cik'";

或者:

$query = "select company_name from company_names where cik = '" . $cik . "'";

请注意,要防止 SQL注入,请参阅:

更多信息:

答案 1 :(得分:0)

$query="select company_name from company_names where cik='".$cik."'";