Mysql
 sql >> Datenbank >  >> RDS >> Mysql

PHP MySQL zeigt nur eine leere Tabelle an

Sie haben vergessen, Ihre Ergebnisse zu wiederholen.

Ändern

<td><?php $uresult ['userno'];?></td>
<td><?php $uresult ['fullname'];?></td>
<td><?php $uresult ['udate'];?></td>

An

<td><?php echo $uresult ['userno'];?></td>
<td><?php echo $uresult ['fullname'];?></td>
<td><?php echo $uresult ['udate'];?></td>

Oder

<td><?= $uresult ['userno'];?></td>
<td><?= $uresult ['fullname'];?></td>
<td><?= $uresult ['udate'];?></td>