我有两个页面,如reg.php和profile.php。在reg.php中有一个字段性别想要在profile.php上显示。我从profile.php上的reg.php获得性别字段。
答案 0 :(得分:0)
使用以下其中一项:
profile.php?gender=male
。答案 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"];
?>