sql >> Databasteknik >  >> RDS >> Mysql

Ställ bord som sida vid sida istället för rakt ner medan du gör en while-loop

Slå in resultatet i en annan tabell.

echo "<table>";
$count = 0;
$num_columns = 2;  // or 3
while ($rc = mysql_fetch_array($results_course)) {
    if ($count++ % $num_columns == 0) {
        echo "<tr>";
    }
    echo "<td>";
    // previous table code here
    echo "</td>";
    if ($count % $num_columns == 0) {
      echo "</tr>";
    }
}
if ($count % $num_columns > 0) {
  echo "</tr>";
}
echo "</table>";


  1. Sätt dubbla citattecken i en mysql-sträng med PHP

  2. Peewee MySQL-server har försvunnit

  3. Hur lägger man till en vagnretur till ett värde i MySQL?

  4. mysqli stöds inte i google app-motor med php