我已经为我的用户注册系统编写了代码。它运行良好,但我在显示用户信息的编码方面遇到了一些麻烦 (例如,姓氏,名字,头像等)
以下是一些编码:
<html> <title> Your Fanfile </title> <a href="edit-profile.php"> Edit Profile </a> </html> <center> <h1 style="color:green;">Your Fanfile! </h1> </center><body background="<?php echo $rws['background_picture']; ?>"
<center> <IMG src="<?php echo $rws['avatar'];?>"> </center><?php
$sql = "SELECT * FROM users WHERE username='$username'";
$result = mysqli_query($database,$sql) or die(mysqli_error($database));
$rws = mysqli_fetch_array($result);?></body><center><p style="color:green;font-size:36px;"> <?php echo $rws['firstname'];?> </p><center> <p style="font-size:15px;"> More commonly known as <?php echo $rws ['username'] ?> </p> </center>
请给我一些关于如何显示用户信息的建议,谢谢。