130 likes | 435 Views
Schéma général d’un site Web dynamique. client Web. serveur Web. serveur BDR. URL + valeurs champs formulaire. Requête SQL. <html> <head> </head> <body> <table><tr> <th>Nom</th> <th>Prenom</th> </tr><tr> <td>Truc</td> <td>Bibi</th> </tr></table>
E N D
Schéma général d’un site Web dynamique client Web serveur Web serveur BDR URL + valeurs champs formulaire Requête SQL <html> <head> </head> <body> <table><tr> <th>Nom</th> <th>Prenom</th> </tr><tr> <td>Truc</td> <td>Bibi</th> </tr></table> </body </html> Nom Prenom Bibi Truc Entëte + ficher html avec javscript Réponse du serveur SQL Mozilla InternetExplorer MySQL Apache (configuré pour php) fphp, ufpdf, tcpdf phpMyAdmin, bbphp, dokuwiki… Bibliothèques de fonctions php et services Web locaux
$nom = $HTTP_GET_VARS['nom']; $pnom = $HTTP_GET_VARS['pnom']; echo '<td>'.$nom.'</td>'; echo "<td>$pnom</td>"; Schéma général d’un site Web dynamique mysql_select_db('ma_db'); … $resultat = mysql_query($requete); client Web serveur Web serveur BDR URL + valeurs champs formulaire Requête SQL <html> <head> </head> <body> <table><tr> <th>Nom</th> <th>Prenom</th> </tr><tr> <td>Truc</td> <td>Bibi</th> </tr></table> </body </html> Nom Prenom Bibi Truc Entëte + ficher html avec javscript Réponse du serveur SQL Mozilla InternetExplorer MySQL Apache (configuré pour php) while($enregistrement = mysql_fetch_array($resultat)) { … } fphp, ufpdf, tcpdf phpMyAdmin, bbphp, dokuwiki… Bibliothèques de fonctions php et services Web locaux