如何在php中将一个页面的值显示到另一个页面?

时间:2010-06-25 07:31:02

标签: php

我有两个页面,如reg.php和profile.php。在reg.php中有一个字段性别想要在profile.php上显示。我从profile.php上的reg.php获得性别字段。

2 个答案:

答案 0 :(得分:0)

使用以下其中一项:

  • 使用隐藏的表单字段并将表单提交到profile.php。
  • 将字段附加到以下网址:profile.php?gender=male
  • 将字段放在用户的session
  • 将该字段放入数据库,并从profile.php中的数据库中检索它。

答案 1 :(得分:0)

使用HTML表单提交数据的小样本....

reg.php

<form action="profile.php" method="post">
<input type="text" name="test" value="Test" />
<input type="submit" value="test" />
</form>

profile.php

<?php
echo $_POST["test"];
?>