Les langages de programmation du Web

Précédent Sommaire 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 Suivant

23. Test en ligne de l'ensemble des applications Web

localhost/isn/localhost/cgi-bin/fsincere.free.fr/isn/langages_web/doc/
5. Page Web
HTML + JavaScript
text/html
bonjour_js.html bonjour_js.html
7. Page Web statique
text/html
bonjour.html bonjour.html
7. Page Web dynamique
PHP
text/html
bonjour.php bonjour.php
7. Page Web dynamique
CGI-Python
text/html
bonjour.py
8. Page Web dynamique
PHP
text/plain
bonjour2.php bonjour2.php
8. Page Web dynamique
CGI-Python
text/plain
bonjour2.py
9. Image dynamique
PHP
image/png
camembert.php camembert.php
9. Image dynamique
CGI-Python
image/png
camembert.py
11. Calcul du carré
méthode POST
Formulaire HTML (saisie)
PHP (traitement)
saisie_nombre_post.html
calcul_carre_post.php
saisie_nombre_post.html
calcul_carre_post.php
11. Calcul du carré
méthode GET
Formulaire HTML (saisie)
PHP (traitement)
saisie_nombre_get.html
calcul_carre_get.php
saisie_nombre_get.html
calcul_carre_get.php
11. Calcul du carré
méthode POST
Formulaire HTML (saisie)
CGI-Python (traitement)
saisie_nombre_post2.htmlcalcul_carre.py
11. Calcul du carré
méthode GET
Formulaire HTML (saisie)
CGI-Python (traitement)
saisie_nombre_get2.htmlcalcul_carre.py
12. Calcul du carré
méthode POST
PHP (saisie + traitement)
carre.php carre.php
12. Calcul du carré
méthode POST
CGI-Python (saisie + traitement)
carre.py
13. Compteur de visites
Page Web en PHP
Fichier de données
page_compteur.php
compteur/compteur.txt
page_compteur.php
compteur/compteur.txt
13. Compteur de visites
Page Web en CGI-Python
Fichier de données
compteur1/compteur.txtpage_compteur.py
14. Création d'un compte
Formulaire HTML (saisie)
PHP (traitement)
Fichier de données
compte_formulaire.html
compte_enregistrement.php
login/data_login.txt
compte_formulaire.html
compte_enregistrement.php
login/data_login.txt
14. Création d'un compte
Formulaire HTML (saisie)
CGI-Python (traitement)
Fichier de données
compte_formulaire2.html
login1/data_login.txt
compte_enregistrement.py
17. Création d'un compte
avec base de données MySQL
Formulaire HTML (saisie)
PHP (traitement)
compte_bdd_formulaire.html
compte_bdd_formulaire_mysqli.html
compte_bdd_formulaire_pdo.html
compte_bdd_enregistrement.php
compte_bdd_enregistrement_mysqli.php
compte_bdd_enregistrement_pdo.php
compte_bdd_formulaire.html
compte_bdd_enregistrement.php
17. Création d'un compte
avec base de données MySQL
Formulaire HTML (saisie)
CGI-Python (traitement)
compte_bdd_formulaire2.htmlcompte_bdd_enregistrement.py