Ma tu mi sa che non sei solo alle prime armi col PHP, non ti va neanche di metterti ad impararlo.
Dopo quello che ti ho detto ci vuole tanto a scrivere quanto segue?
al posto diCodice PHP:
$tabella = '<table border="1">
<tr>
<th>Usernanme</th>
<th>Password</th>
</tr>';
poiCodice PHP:
echo '<table border="1">
<tr>
<th>Usernanme</th>
<th>Password</th>
</tr>';
ed infineCodice PHP:
$tabella .= "<tr>
<td>$nome123</td>
<td>$psw123</td>
</tr>";
Codice PHP:
$tabella .= '</table>';