我只需要显示来自 mysql 数据库的数据。当用户提交表单时,所有数据都已经存储在数据库中。因此,在用户登录后的登录页面中,我需要显示用户全名以及数据库表中的其他一些列。本质上,我希望页面显示 Welcome fullname,然后在表格中显示数据库中的其他一些列。我应该如何使用会话对此进行编码?注意:我尝试在登录后使用会话显示用户的全名和当前余额。我的代码如下:
<?php
// Connect to database display welcome Full name, then date, name, credit, debit, balance
session_start();
$fullname="";
$currentbalance="";
if (!isset($_SESSION)){
session_start();
}
echo $_SESSION['fullname'];
?>
Welcome <?php echo $_SESSION['fullname']; ?>.
<table border ="1">
<th>DATE </th>
<th>'.$fullname.' </th>
<th>CREDIT </th>
<th>DEBIT</th>
<th><?php echo $_SESSION['currentbalance']; ?</th>
</table>