回声打印/帮助我

时间:2014-06-01 01:09:34

标签: php html printing echo

我遇到了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\');

我需要删除\在输出中请帮帮我

1 个答案:

答案 0 :(得分:-2)

使用json_decode()解码转义字符。您可以使用str_replace('\','',$ str)删除\字符或任何其他字符。