Listing du fichier fa.php
00001 <?php
00002
00003 # (gH) -_- fa.php ; TimeStamp (unix) : 03 Mars 2013 vers 12:51
00004
00005 error_reporting(E_ALL | E_NOTICE | E_STRICT) ;
00006 include("std.php") ;
00007
00008 include("resfa_inc.php") ; # contient la fonction listeDesChamps
00009
00010 debutPage("Films et artistes","strict","","fa.js") ;
00011 debutSection() ;
00012
00013 #############################################################################################
00014
00015 h1("Consultation des tables films et artistes") ;
00016
00017 #############################################################################################
00018
00019 h2("Formulaire version 1") ;
00020
00021 blockquote() ;
00022 form("fa_res.php") ;
00023 p() ;
00024 echo "Choisissez la table " ;
00025 listeSelectFromTxt("nomtable","films artistes") ;
00026 finp() ;
00027 p() ;
00028 echo " puis le nombre de lignes à renvoyer " ;
00029 echo input_text("nblr","10") ;
00030 finp() ;
00031 p() ;
00032 echo " à partir de l'enregistrement " ;
00033 echo input_text("debenr","35") ;
00034 finp() ;
00035 p() ;
00036 nbsp(15) ;
00037 echo input_submit("envoyer") ;
00038 finp() ;
00039 finform() ;
00040 p() ;
00041 anonymousConnect("statdata") ;
00042 echo s_span("Remarque","gvert") ;
00043 $nbf = comptageSqlSimple("titre","films") ;
00044 $nba = comptageSqlSimple("artnom","artistes") ;
00045 echo " : il y a $nbf films et $nba artistes en tout." ;
00046 finp() ;
00047 finblockquote() ;
00048
00049 # ------------------------------------------------------------------------------------------
00050
00051 h2("Formulaire version 2 ") ;
00052
00053 noscript() ;
00054 p() ;
00055 echo "Attention, Javascript n'est pas actif, ce formulaire est incomplet." ;
00056 finp() ;
00057 finnoscript() ;
00058
00059 blockquote() ;
00060 form("fa_res2.php") ;
00061 p("","seltable") ;
00062 echo "Choisissez la table " ;
00063 sdl() ;
00064 input_radio("nomtable2","films","films" ,"","","films" ,"onclick='montreChamps(\"films\")'") ;
00065 input_radio("nomtable2","films","artistes","","","artistes","onclick='montreChamps(\"artistes\")'") ;
00066 input_hidden("nomtableChoix","films") ;
00067 finp() ;
00068 div("invisible","pcrit") ;
00069 p() ;
00070 echo s_span(" et le critère de tri ","grouge") ;
00071 sdl() ;
00072 span("invisible","champsFilms") ;
00073 listeSelectFromTxt("criteref",join(" ",listeDesChamps("films"))) ;
00074 finspan() ;
00075 sdl() ;
00076 span("invisible","champsArtistes") ;
00077 listeSelectFromTxt("criterea",join(" ",listeDesChamps("artistes"))) ;
00078 finspan() ;
00079 finp() ;
00080 findiv() ;
00081 p() ;
00082 echo " puis le nombre de lignes à renvoyer " ;
00083 echo input_text("nblr2","10") ;
00084 finp() ;
00085 p() ;
00086 echo " à partir de l'enregistrement " ;
00087 echo input_text("debenr2","35") ;
00088 finp() ;
00089 p("invisible","envoi") ;
00090 nbsp(15) ;
00091 echo input_submit("envoyer") ;
00092 finp() ;
00093 finform() ;
00094 finblockquote() ;
00095
00096
00097 #############################################################################################
00098
00099 finSection() ;
00100 finPage() ;
00101 ?>
La coloration syntaxique est réalisée par un enrobage de la function php nommée highlight_file
mais si vous préférez, vous pouvez utiliser celle de SyntaxHighlighter ou même celle de geshi.
Pour ne pas voir les numéros de ligne, ajoutez &nl=non à la suite du nom du fichier.
Retour à la page principale de (gH)