我将表单数据发布到php文件,然后将其存储在数据库中。我使用序列化方法来序列化表单数据。它序列化数据如:
date=1%2BF%2+-+1%2BF%2&selValue0%2B%C=23
但我希望发布它:
date =12-12&selValue0=23
我在php中尝试了unserialize()
,在javascript和php中编码解码但是没有工作
答案 0 :(得分:0)
<form method="POST">
<input type="text" name="date" />
<input type="text" name="setValue0" />
<input type="submit" />
</form>
<?php
echo @file_get_contents('php://input');
?>