通过POST进行urlencoding

时间:2014-06-19 23:22:30

标签: javascript php ajax save

好吧,我不确定发生了什么......我有一段时间没碰过这些东西,所以我一无所知。但我基本上是在尝试将HTML保存到文件中,但出于某种原因,这就是保存的内容。

<table id=\"sectorTableMap\">

它不应该做\&#34;所以它应该......

<table id="sectorTableMap">

那么我该如何解决这个问题呢?这是我保存文件的文件。

$user = strtolower($_POST['user']);
$map = $_POST['map'];
$fileName = 'savedMaps/'.$user.'/'.$_POST["fileName"].'.html';
file_put_contents($fileName,$map);

这是如何保存的。

xmlhttp.open("POST","somePage?t="+Math.random(),true);
    xmlhttp.setRequestHeader("Content-type","application/x-www-form-urlencoded");
    xmlhttp.send('map='+data+'&user='+user+'&fileName='+fileName);

0 个答案:

没有答案