sql >> Databasteknik >  >> RDS >> Mysql

php-utgång från mysql till html-tabell

Byt ut stunden inuti if med detta:

echo '<table class="table table-striped table-bordered table-hover">'; 
echo "<tr><th>Name</th><th>Description:</th><th>Status</th></tr>"; 
while($row = mysqli_fetch_array($results))
{
  echo "<tr><td>"; 
  echo $row['name'];
  echo "</td><td>";   
  echo $row['des'];
  echo "</td><td>";    
  echo $row['status'];
  echo "</td></tr>";  
}
echo "</table>";    


  1. Behöver jag använda C3P0 pooling-bibliotek i min (grails) webbapplikation?

  2. MySQL konverterar Degree, Minutes, Seconds till Degree decimal

  3. Det går inte att komma åt Sonar MySQL-databasen Orsakad av:java.sql.SQLE Undantag:Åtkomst nekad för användaren 'sonar'@'glassfishdev.ccs.local' (med lösenord:JA)

  4. Mitt PDO-uttalande fungerar inte