Home > Backend Development > PHP Tutorial > PHP form表单提交有关问题

PHP form表单提交有关问题

WBOY
Release: 2016-06-13 12:14:07
Original
930 people have browsed it

PHP form表单提交问题
orderform.html如下

<br /><!DOCTYPE HTML><br /><html><br /><head><br />	<meta http-equiv="content-type" content="text/html" /><br />	<meta name="author" content="blog.anchen8.net" /><br /><br />	<title>Untitled 2</title><br /></head><br /><br /><body><br /><form action="processorder.php" method="post"><br /><table id="table1"><br />    <tr id="tr1"><br />        <td id="td1"> Item</td><br />        <td id="td2">Quantity</td><br />    </tr><br />    <tr id="tr2"><br />        <td id="td3">Tires</td><br />        <td id="td4"><input type="text" name="tireqty" size="3" maxlength="3" /></td><br />    </tr><br />    <tr id="tr3"><br />        <td id="td5">Oil</td><br />        <td id="td6"><input type="text" name="oilqty" size="3" maxlength="3"/></td><br />    </tr><br />    <tr id="tr4"><br />        <td id="td7"><br />        Spark Plus<br />        </td><br />        <td id="td8" ><input type="text" name="sqarkqty" size="3" maxlength="3" /></td><br />    </tr><br />    <tr><br />        <td id="td9" colspan="2"><input type="submit" value="Submit Order" /></td><br />    </tr><br /><br /></table><br /></form><br /><br /><br /></body><br /></html><br /><br />
Copy after login

processorder.php代码如下
<br /><?php <br />    echo '<p>Order Process!</p>';<br />     ?><br />
Copy after login

现在的问题是,当我填写完表单之后,点击提交,并没有按照预期进入目标页面,反而启动自动下载程序去下载php?求解这是怎么回事?谢谢
------解决思路----------------------
可能是你的阿帕奇有问题,重装阿帕奇试试
------解决思路----------------------
apache的问题吧
------解决思路----------------------
大多是php没有正确安装所引起,先确认你的环境能不能执行php

Related labels:
source:php.cn
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template