PHP Mysql Automatique +++ Affichage
Résolu/Fermé
A voir également:
- PHP Mysql Automatique +++ Affichage
- Recherche automatique des chaînes ne fonctionne pas - Guide
- Message automatique thunderbird - Guide
- Easy php - Télécharger - Divers Web & Internet
- Gmail libellé automatique - Guide
- Sommaire automatique word - Guide
1 réponse
Résolu:
Merci à sabotage du forum http://www.developpez.net/
echo '<table border> <tr>'; $req=$bdd->query('SHOW COLUMNS FROM '.$table); while($data = $req->fetch(PDO::FETCH_ASSOC)) { echo '<th>' . $data['Field'] . '</th>'; } echo '</tr>'; $req=$bdd->query('SELECT * FROM ' . $table); while($data = $req->fetch(PDO::FETCH_ASSOC)) { echo'<tr>'; foreach ($data as $value) { echo '<td>' . htmlspecialchars($value) . '</td>'; } echo ' <td style="padding:15px;"><a href="page.php?page=Direction&&direction=modif&&table='.$table.'&&id='.$data_information['id'].'"><img src="modifier.png" alt="modification" title="modification"/></a></td> <td style="padding:15px;"><a href="page.php?page=Direction&&direction=del&&table='.$table.'&&id='.$data_information['id'].'"><img src="supprimer.png" alt="delete" title="delete"/></a></td> </tr>'; } echo'</table>';
Merci à sabotage du forum http://www.developpez.net/