例如,客户端的 Web 浏览器执行 JavaScript
xmlhttp.open("POST", "LatestFashion.php", true)
xmlhttp.setRequestHeader("Content-type", "application/x-www-form-urlencoded")
xmlhttp.send("name="+encodeURIComponent(name.value)+"&gender="+encodeURIComponent(gender.value))
LatestFashion.php 页面做了很多工作,但它让我发疯了。如何将内容输出到屏幕或一些合理的来源,以便我可以知道 LatestFashion.php 中包含哪些值变量?这在生产版本中不存在。我唯一能想到的就是打开一个文件并写入它。现在,LatestFashion.php 无法正常工作,而且故障排除非常困难。对数据库的查询正在运行,但我看不到它实际得到的结果。现在我已经尝试独立运行 SQL 查询,手动添加由name
and提供给脚本的数据gender
。
编辑:我正在使用 FireFox。