更新用户:保存已填写的详细信息

时间:2015-11-06 16:41:51

标签: javascript php jquery html mysql

我已为我的用户编写了更新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"];
}

1 个答案:

答案 0 :(得分:0)

echo用户通过value="<?php echo 'whatever' ?>"内的input发送电子邮件。假设你有比你发布的更多的东西。