In PHP kann eine Verbindung zu einer MySQL-Datenbank hergestellt und Daten daraus in einer HTML-Tabelle angezeigt werden Folgende Schritte:
<code class="php">$connection = mysql_connect('localhost', 'root', ''); //The Blank string is the password mysql_select_db('hrmwaitrose'); $query = "SELECT * FROM employee"; //You don't need a ; like you do in SQL $result = mysql_query($query); echo "<table>"; // start a table tag in the HTML while($row = mysql_fetch_array($result)){ //Creates a loop to loop through results echo "<tr><td>" . htmlspecialchars($row['name']) . "</td><td>" . htmlspecialchars($row['age']) . "</td></tr>"; //$row['index'] the index here is a field name } echo "</table>"; //Close the table in HTML mysql_close(); //Make sure to close out the database connection</code>
In diesem Code:
Dieser Code stellt eine einfache Vorlage zum Anzeigen von Daten aus einer MySQL-Datenbank in einer HTML-Tabelle in PHP bereit. Bitte beachten Sie, dass mysql_fetch_array in PHP 7.0.0 und höher veraltet ist, sodass Sie möglicherweise stattdessen mysqli_fetch_array() verwenden müssen.
Das obige ist der detaillierte Inhalt vonWie zeige ich Daten aus einer SQL-Datenbank in einer PHP/HTML-Tabelle an?. Für weitere Informationen folgen Sie bitte anderen verwandten Artikeln auf der PHP chinesischen Website!