Il es possible que tu n'est pas le short mode a on dans le php.ini est du coup <? ça ne fonctionne pas, il faut mettre <?php en balise ouvrante...
Sinon que ça fonctionne :
prouve que ton serveur (apache ?) et php sont bien configuré, donc :
Code :
- <?php
- $requete = 'SELECT * FROM station;';
- mysql_connect('localhost', 'mqttclient', 'az');
- mysql_select_db('meteo');
- /******************************************************/
- $res = mysql_query($requete) or exit(mysql_error());
- echo '<table border="1"><tr>';
- for ($i = 0; $i < mysql_num_fields($res); $i++) {
- echo '<th>';
- echo mysql_field_name($res, $i);
- echo '</th>';
- }
- echo '</tr>';
- while ($row = mysql_fetch_row($res)) {
- echo '<tr>';
- for ($j = 0; $j < count($row); $j++) {
- echo '<td>';
- echo ($row[$j] == NULL) ? '<i>NULL</i>' : $row[$j];
- echo '</td>';
- }
- echo '</tr>';
- }
- ?>
|
ne devrait pas afficher le code source !
---------------
D3