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

8. Page Web dynamique de type texte brut

A la place d'une page HTML, un script en langage serveur peut retourner un simple fichier en texte brut (type MIME text/plain).

php En PHP

Localisation c:/wamp/www/isn/bonjour2.php
URL http://localhost/isn/bonjour2.php

<?php
header("Content-Type: text/plain ; charset=utf-8");

date_default_timezone_set("Europe/Paris"); // fuseau horaire
print "Une page de texte brut en PHP\n\n";
print "Bonjour !\n";
print "Date ".date("d/m/Y")."\n";
print "Heure courante ".date("H:i:s");
?>

Voir

python Script CGI en Python

Localisation c:/wamp/bin/apache/apache2.2.22/cgi-bin/bonjour2.py
URL http://localhost/cgi-bin/bonjour2.py

#! c:/Python27/python.exe
# -*- coding: utf-8 -*-
# script CGI bonjour2.py

print "Content-Type: text/plain ; charset=utf-8\n"

import time

print "Une page de texte brut en CGI-Python\n"
print "Bonjour !"
print "Date " time.strftime("%d/%m/%Y")
print "Heure courante " time.strftime("%H:%M:%S")

wampserver