Lid |
|
Onlangs is hier al een topic over geweest. Maar daar stond niet echt de oplossing in. De starter van het topic had namelijk zelf zijn fout gevonden. Wel, ik heb helemaal dezelfde cursus, en bij mij lukt het ook niet.
Script dat ik gebruik:
<?php
/* Programma: mysql_up.php
* Beschrijving: Legt de verbinding naar een MySQL Server en
* voert de instellingen uit.
*/
echo "<html>
<head> <title>Test MySQL</title></head>
<body>";
$host="localhost";
$user="";
$password="";
$cxn = mysqli_connect ($host,$user,$password);
$sql ="SHOW STATUS";
$result = mysqli_query($cxn,$sql);
if ($result == false)
{
echo "<h4>Error: ". mysqli_error($cxn) . "</h4>";
}
else
{
/* Tabel met de resultaten */
echo "<table border='1'>
<tr><th>Variable name</th>
<th>Value</th></tr>";
for ($i = 0; $i <mysqli_num_rows($result); $i++)
{
echo "<tr>";
$row_array = mysqli_fetch_row($result);
for ($j = 0; $j <mysqli_num_fields($result); $j++)
{
echo "<td>" . $row_array[$j] . "</td>\n";
}
}
echo "</table>";
}
?>
</body></html>
<?php /* Programma: mysql_up.php * Beschrijving: Legt de verbinding naar een MySQL Server en * voert de instellingen uit. */ <head> <title>Test MySQL</title></head> <body>"; $host="localhost"; $user=""; $password=""; $cxn = mysqli_connect ($host,$user,$password); $sql ="SHOW STATUS"; $result = mysqli_query($cxn,$sql); if ($result == false) { echo "<h4>Error: ". mysqli_error ($cxn) . "</h4>"; } else { /* Tabel met de resultaten */ <tr><th>Variable name</th> <th>Value</th></tr>"; for ($i = 0; $i <mysqli_num_rows($result); $i++) { $row_array = mysqli_fetch_row($result); for ($j = 0; $j <mysqli_num_fields($result); $j++) { echo "<td>" . $row_array[$j] . "</td>\n"; } } } ?> </body></html>
Ik had als username: Root . En bij passwoord niets ingevult. Toch krijg ik een leeg wit scherm te zien...
Ideetjes?
|