Home > Backend Development > PHP Tutorial > PHP如何接收到前一个php发出来的本文内容,并写入数据表

PHP如何接收到前一个php发出来的本文内容,并写入数据表

WBOY
Release: 2016-06-20 12:40:12
Original
967 people have browsed it

课程设计是写高铁订票
我现在要实现的功能是:管理员身份,修改已经录入数据表中的某辆列车信息

文件1:manage_change_input.php

部分:
        $trains=$_GET["trains"];
$origin=$_GET["origin"];
$destination=$_GET["destination"];
$time=$_GET["time"];
$price=$_GET["price"];
$sum=$_GET["sum"];

        echo "









";
echo "
;          //我这里给value赋值,是用来显示原来的列车信息
;
;
;
;
;
";
echo "";

文件2:manage_change_process.php

部分:
         $tr=$_GET["trains"];

$trains=$_POST["trains_in"];
$origin=$_POST["origin_in"];
$destination=$_POST["destination_in"];
$time=$_POST["time_in"];
$price=$_POST["price_in"];
$sum=$_POST["sum_in"];
我这里该如何获取文件1里面input输入的值呢?使用$_POST报错,说是没有定义

技术小白,刚学,求大神帮忙
第一次发帖,看到邀请回复,冒昧邀请了5位,不好意思


回复讨论(解决方案)

因为你的  确认修改  是个超链接按钮,只做跳转,不会提交参数

把button,改成submit类型

<input type="submit" value="确认修改">
Copy after login


把action,改成你的超链接地址


因为是post提交,form的action给个请求的地址即可,另外你的确认修改是链接,
无法将表单的input值提交到服务器,所以需要改成submit按钮。
车次 出发地 到达地 时间 价格 总车票数量
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