所以这是我的示例代码。 我希望在单击下一页(a href)时,文本框中的数据将保存到会话中。请帮帮我。我虽然对这种语言不熟悉。
<?php
session_start();
?>
....
<!DOCTYPE HTML>
<html>
<form action = "ecateg5.php" method = "POST">
<table class="w3-hoverable">
<tr class="thead">
<th>V. ADDITIONAL .. . . . .</th>
</tr>
</table>
<BR>
A. Teaching skills
<BR>
<tr><td><TEXTAREA name="vcommenta" cols=40 rows=4></TEXTAREA></td></tr>
.....
D. Personal qualities
<BR>
<tr><td><TEXTAREA name="vcommentd" cols=40 rows=4></TEXTAREA></td></tr>
<BR>
<BR>
<BR>
<BR>
<div class="w3-center">
<ul class="w3-pagination">
..........
<li><a class="blue" href="ecateg5.php">5</a></li>
<li><a href="ecateg6.php">6</a></li>
.............
<li><a href="ecateg6.php">»</a></li>
</ul>
</div>
</form>
</body>
</html>
答案 0 :(得分:0)
我假设你要去 /ecateg5.php 页面。您需要创建一个函数,该函数将采用 ecateg5.php 中文本框的已发布值。
您还需要使用
在您想要去的页面中启动会话session_start();
以下是用于创建名为默认的会话的示例代码。它的值是文本框中名为 vcommenta
的字符串$_SESSION["default"] = $_POST[vcommenta];