我已为我的用户编写了更新HTML表单和PHP脚本,但它确实有效。现在我希望表单能够记住已经填写的内容。
HTML表单:
我尝试了什么:
<td><label>Email:</label></td>
<td><input type="email" name="email" placeholder="email()"></td>
PHP脚本:
include_once './controler/connect.php';
session_start();
function email()
{
$username=$_SESSION["user"];
$sql = "SELECT email FROM `users` WHERE user='$username' ";
$query = mysqli_query(con(), $sql);
$row=mysqli_fetch_assoc($query);
return $row["email"];
}
答案 0 :(得分:0)
echo
用户通过value="<?php echo 'whatever' ?>"
内的input
发送电子邮件。假设你有比你发布的更多的东西。