我需要將變量從第1頁傳遞到第3頁如何創建它?PHP中從第1頁到第3頁傳遞變量
- 我可以從1頁傳遞變量下一
- 如何i到從第一到第二頁和同一個值傳遞變量第三頁
這裏是示例
<a href="page2.php?myname=Suraj Mittal&age=22&fav_color=White&fav_fruit=Grapes">Click here to send variables in the URL</a>
第二頁
<?php
$name = $_GET['myname'];
$age = $_GET['age'];
$color = $_GET['fav_color'];
$fruit = $_GET['fav_fruit'];
echo "My name is ".$name.". and I am ".$age." years old. My favourite color is ".$color." and my favourite fruit is ".$fruit.".";
?>
將值保存在$ _SESSION中並在任何頁面中獲取它們 – Tushar 2014-09-23 08:20:28
有多種方式可以實現您的目標。 1.會話2.通過URL 3.發佈4. Cookie 5.全局。你到底想要什麼? – GuyT 2014-09-23 08:21:46
@Wehelie但我需要傳遞變量到很多頁面 – 2014-09-23 08:22:42