这里我有一个HTML表单,用于将商店提交的数据存储在表中。
<label> ID: </label><input type="text" name="id"/>
<label>Name :</label><textarea name='Name'></textarea>
<label>Value :</label><br /><input type="text" name="Value"/>
<input type="submit" name="submit" value=" submit "/>
下次提交表单时,表格会刷新并存储新值。相反,我需要它向表中添加新行并存储我在会话期间提交的所有先前数据。如何在不使用数据库的情况下添加新行?
<?php
session_start();
echo "<table>
<tr>
<th>ID</th>
<th>Name</th>
<th>Value</th>
</tr>";
if (isset($_POST['submit'])) {
echo "
<tr>
<td>".$_POST['id']."</td>
<td>".$_POST['Name']."</td>
<td>".$_POST['Value']."</td>
</tr>";
}
答案 0 :(得分:0)
试试这个:
<?php
session_start();
echo "<table>
<tr>
<th>ID</th>
<th>Name</th>
<th>Value</th>
</tr>";
if (isset($_POST['submit'])) {
$_SESSION['posts'][] = $_POST;
foreach ($_SESSION['posts'] as $post)
echo "<tr>
<td>{$post['id']}</td>
<td>{$post['Name']}</td>
<td>{$post['Value']}</td>
</tr>";
}
或者如果您想在一个页面中完成所有操作:
<?php
session_start();
echo "<table>
<tr>
<th>ID</th>
<th>Name</th>
<th>Value</th>
</tr>";
if (isset($_POST['submit'])) {
$_SESSION['posts'][] = $_POST;
foreach ($_SESSION['posts'] as $post)
echo "<tr>
<td>{$post['id']}</td>
<td>{$post['Name']}</td>
<td>{$post['Value']}</td>
</tr>";
}
?>
<form action="" method="post">
<label> ID: </label><input type="text" name="id"/><br>
<label>Name :</label><textarea name='Name'></textarea><br>
<label>Value :</label><br /><input type="text" name="Value"/><br>
<input type="submit" name="submit" value=" submit "/><br>