-5
$cod=set_value('code')  ;   

$where='`code`= '.$cod ' ';

结果应该是这样code ='some value',但是当我打印时给出错误

4

1 回答 1

1

我没有正确理解你的问题,但我认为这是你需要的......

$where="'code=".$cod."'";

Or


$where="code='".$cod."'";
于 2013-01-04T09:16:31.620 回答