我的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中添加单引号?
答案 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."'";