Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
$cod=set_value('code') ; $where='`code`= '.$cod ' ';
結果は次のようになりますcode ='some value'が、印刷するとエラーが発生します
code ='some value'
私はあなたの質問を正しく理解していませんでしたが、これはあなたが必要としているものだと思います...
$where="'code=".$cod."'"; Or $where="code='".$cod."'";