私はスクリプトで数時間座っていますが、正しく動作しません。ブートストラップテーブルにmysqlデータを書きたいと思います。残念ながら、私はいつも他の情報やエラーメッセージを出します。 誰かがこのスクリプトを見ることができれば非常にいいです。PHP、Mysql、Bootstrapテーブルが動作しない
$conn = new mysqli($servername, $username, $password, $dbname);
$conn->set_charset("utf8");
$sql = "SELECT Osman, Tanja, Christiane, Marcella, Magarita, Nathalie, Kommentar, Gutschein, EC FROM Salon1_10_04_2016";
$results = $conn->query($sql);
<table class="table table-hover">
<thead>
<tr>
<th>Firstname</th>
<th>Lastname</th>
<th>Email</th>
</tr>
</thead>
<tbody>
<?while($row = mysqli_fetch_assoc($result)) {
echo"<tr class='table_row'>";
echo"<td>" . $row['Osman'] . "</td>";
echo"<td>" . $row['Tanja'] . "</td>";
echo"<td>" . $row['Christiane'] . "</td>";
echo"<td>" . $row['Marcella'] . "</td>";
echo"<td>" . $row['Magarita'] . "</td>";
echo"<td>" . $row['Nathalie'] . "</td>";
echo"<td>" . $row['Kommentar'] . "</td>";
echo"<td>" . $row['Gutschein'] . "</td>";
echo"<td>" . $row['EC'] . "</td>";
echo"</tr>";
} echo"</table>";}?>
:チェックしたい場合は、値を使用すると、値が空の場合は希望のcharを返すための簡単な関数を定義することができ、文字列の中にあります["fields_count"] => int ["lengths"] => NULL ["num_rows"] => [num_rows] => > int(1)["type"] => int(0)} –
スクリプトの途中で2番目のPHPタグ '<?'を開いた理由は? – mitkosoft
この2つの間に、htmlとcssスクリプトがあります。 whileループで –