我在目录
中安装了wampE:\folder_name\wamp
它包含所有的东西www和PHP文件示例testmysql.php,它在我运行时工作正常 它直接在浏览器上通过
http://localhost:80/testmysql.php
我正在开发一个项目,并在目录E:\ folder_name \ index.html中创建了一个文件,这个index.html有一个表单
<form method="post" action="../wamp/www/testmysql.php">
/*
* form inputs etc here and submitt button also
*
*
</form>
当我在浏览器中运行它时,它会下载PHP文件而不是执行它。 对于PHP脚本我使用phpstorm Plz帮帮我
答案 0 :(得分:1)
index.html中的文件夹与您的网络服务器所服务的内容相关,因此它应该是
<form method="post" action="testmysql.php">
如果文件夹结构是这样的
E:\folder_name\wamp\www\index.html
E:\folder_name\wamp\www\testmysql.php
答案 1 :(得分:0)
您必须将行动地址更改为:
http://localhost/testmysql.php