1 / 2

serveur Web

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>

fritz
Download Presentation

serveur Web

An Image/Link below is provided (as is) to download presentation Download Policy: Content on the Website is provided to you AS IS for your information and personal use and may not be sold / licensed / shared on other websites without getting consent from its author. Content is provided to you AS IS for your information and personal use only. Download presentation by click this link. While downloading, if for some reason you are not able to download a presentation, the publisher may have deleted the file from their server. During download, if you can't get a presentation, the file might be deleted by the publisher.

E N D

Presentation Transcript


  1. 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

  2. $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

More Related