Ceci est une ancienne révision du document !
<?php
/* [[simplearray1dimension.php]] Script to highlight dynamically navigation link corresponding to the current page
#
# Authors:
# FR, radeff@akademia.ch
# History
# 2008/01/23 10:11: FR, created
#########
$array=array(
'nom',
'prenom',
'adresse',
'cp',
'ville',
'email',
'mobile'
);
$size=count($array);
for ($i=0; $i <= $size; $i++) {
echo $array[$i] . "<BR>";
}
?>