在php中再次发送获取数据到另一个页面

在我的网站上,我有一些网址,例如

example.com/test/test?name=dd&type=a

我想再次将数据发送到另一个页面,例如:-

example.com/test/test/again?name=dd&type=a

我怎样才能从 /test 向 /again 发送数据,请告诉我


神不在的星期二
浏览 168回答 1
1回答

守着一只汪

您首先需要存储来自 get 变量的数据$name = $_GET['name'];$type = $_GET['type'];现在假设您想将此数据发送到page2按钮单击<form method="get" action="page2.php">&nbsp; &nbsp; &nbsp; <input type="hidden" name="name" value="<?php echo $name;?>">&nbsp; &nbsp; &nbsp; <input type="hidden" name="type" value="<?php echo $type;?>">&nbsp; &nbsp; &nbsp; <input type="submit"></form>做同样的事情来获取这些变量 page2$name = $_GET['name'];$type = $_GET['type'];
打开App,查看更多内容
随时随地看视频慕课网APP