我创建了一个成功表格,查看用户的全名,用户名和 注册后在表单上输入密码,现在我的问题是如何将名字和姓氏作为全名加入并显示在我的文本框中。你可以帮助我。谢谢。
这是我的示例成功表单代码:
<form >
<div class="form-group row" style="margin-top:60px;">
<!-- Material input -->
<label for="username" class="col-sm-1 col-form-label"><strong>Name:</strong></label>
<div class="col-sm-10">
<div class="md-form mt-0">
<input type="text" class="form-control" id="name" name="name" style="margin-left:55px; width:180px;" value="<?php echo $name?>" readonly="true">
</div>
</div>
</div>
</form>
这是我的示例查询:
<?php
include_once('connection.php');
$sql = "select concat(fname,'',lname) as name from visitor order by id DESC limit 1";
$result = mysqli_query($conn,$sql);
while ($row = mysqli_fetch_array($result)) {
$fname=$row['fname'];
$lname=$row['lname'];
}
?>