Listing du fichier chess2.php
00001 <?php
00002 # # (gH) -_- chess2.php ; TimeStamp (unix) : 08 Août 2014 vers 11:17
00003 error_reporting(E_ALL | E_NOTICE ) ;
00004 include("std.php") ;
00005 $titre = "Echiquier en SVG, version 2 ! " ;
00006 debutPage($titre,"strict","","echiquier.js") ;
00007 debutSection() ;
00008 h1($titre) ;
00009 div("","echiquier") ;
00010
00011 # ---------------------------------------------------------------------
00012
00013 $nMax = 27 ;
00014 $valeursN = "" ;
00015 for ($ind=1;$ind<=$nMax;$ind++) {
00016 $valeursN .= "$ind " ;
00017 } ; # fin pour ind
00018
00019 p() ;
00020 echo "Saisissez la taille de l'échiquier, de 1 à $nMax : " ;
00021 $xtra = " onchange='dessine()' " ;
00022 listeSelectFromTxt("n",$valeursN,3,$xtra) ;
00023 finp() ;
00024
00025 p() ;
00026 echo s_span("Code-source de cette page","orange_stim nou")." : " ;
00027 echo href("montresource.php?nomfic=chess2.php","chess2.php")." ; " ;
00028 echo " fichier javascript utilisé : ".href("montresource.php?nomfic=echiquier.js","echiquier.js","gbleuf nou").". " ;
00029 finp() ;
00030
00031 sdl() ;
00032 objet("draw","chess1.php?n=3","image/svg+xml") ;
00033 sdl() ;
00034
00035 # ---------------------------------------------------------------------
00036
00037 findiv() ;
00038 finSection() ;
00039 finPage() ;
00040 ?>
Pour ne pas voir les numéros de ligne, ajoutez &nl=non à la suite du nom du fichier.
Retour à la page principale de (gH)