我遇到了Echo Print /
的问题我的代码是:
<form action="" method="post">
<input type="text" name="hh">
<br>
<input type="submit">
</form>
<?php
$hh=$_POST[hh];
echo $hh;
?>
我输入表格
INSERT INTO `cq_action` VALUES ('5846', '5847', '5848', '0101', '0', 'H3');
Exmple
INSERT INTO `cq_action` VALUES (\'5846\', \'5847\', \'5848\', \'0101\', \'0\', \'H3\');
我需要删除\
在输出中请帮帮我
答案 0 :(得分:-2)
使用json_decode()解码转义字符。您可以使用str_replace('\','',$ str)删除\字符或任何其他字符。