Pertama, Anda harus mempelajari kode HTML untuk tabel. Kode Anda menempatkan Header Tabel (th
) di sebelah item kolom normal (td
). Anda perlu mengulang header terlebih dahulu lalu baris berikutnya mengulang item kolom atau membuat string ke echo
keluar.
$headers = $col = "";
while($pickresults= mysql_fetch_assoc($picksquery)){
$headers .= "<th> {$pickresults['username']} </th>";
$col .= "<td> {$pickresults['firstgame']} </td>";
}
echo "<table><tr>$headers</tr><tr>$col</tr></table>";