Exemples introductifs aux TP de Fichiers et Bases de Données
Voici quelques petits exemples qui vous permettrons de vous familiariser avec les
langages utilisés sur Internet tels que HTML et PHP.
Pour faire fonctionner ces exemples, nous assumons que vous possédez :
- Un browser web
-
EASY PHP en tâche de fond (l'icône dans la barre de tâche doit clignoter)
- Un éditeur quelconque pour créer vos pages web
Les exemples sont classés par difficulté croissante :
A Very Simple Document
The title goes here.
This is the body.
|
A Table
Exercice : ajouter une colonne et une ligne quelconque au tableau.
A partir de maintenant, les pages HTML sont écrites par un programme PHP.
Impression à l'écran
### Save as first.php ###
bonjour en gras\n");
?>
Bonjour, nous sommes le print (date("j F Y, G:i")); ?>
|
Tableaux
Functions and Parameters
Une table en PHP
Tableau
Tableau
Odd | Even |
%d | %d | ", ((2*$i)-1), (2*$i) );
}
?>
|
Exercice : ajouter une colonne et une ligne quelconque au tableau (en HTML et en PHP).
A simple form with parameters
This form is used to get the guest name into the variable prenom
.
prenom
is then passed to the script hello2.php
.
Hello
Bonjour $prenom !"; ?>
|
PHP + HTML + ODBC
The following table prints the answer to the query
contained in the PHP variable $query
.
Il exite $num_rows lignes ");
print ("\n");
// On boucle pour afficher chaque ligne du tableau
while ($a_row = mysql_fetch_row($result))
{
print ("\n");
// On boucle pour afficher chaque colonne
foreach ($a_row as $field)
print "\t$field | \n";
print " \n";
}
print (" ");
// On ferme la connexion a la BD
mysql_close($link);
?>
|
The preceding programs did not take input from the Web browser.
The following application allows the user to submit an SQL query and to see the answer.
It consists of two parts:
-
A HTML document
'query.html'
that prompts the user to submit a query.
-
When the user pushes the submit button,
the PHP program
'exec.php'
passes the query to the database,
and writes a HTML page containing the query answer.
Exercice : Afficher la requête envoyée avant le résultat.
Service de Science des Systèmes d'Information, Institut d'Informatique, Université de Mons-Hainaut, Belgique
Last modified : Tuesday, 25-Jan-2005 21:26:17 NFT Renaud Bassée