Listing du fichier cmpdtd.php
00001 <?php
00002 # (gH) -_- analysedtd.php ; TimeStamp (unix) : 15 Août 2012 vers 14:34
00003
00004 error_reporting(E_ALL) ;
00005 include("../std.php") ;
00006 include("cmpdtd_inc.php") ;
00007
00008 #############################################################################
00009
00010 $host = getenv("HTTP_HOST") ;
00011 $newUrl = "http://forge.info.univ-angers.fr/~gh/internet/Webrd/cmpdtd.php" ;
00012
00013 if ($host=="www.info.univ-angers.fr") {
00014 debutPageRedir("redirection",0,$newUrl) ;
00015 finPage() ;
00016 exit(-1) ;
00017 } # fin si
00018
00019 #############################################################################
00020
00021 debutPage("Comparaison de grammaires DTD","strict") ;
00022 debutSection() ;
00023
00024 #############################################################################
00025
00026
00027 $tabGrams = lesGrammaires() ;
00028 for ($igram=1;$igram<=2;$igram++) {
00029 $gram = "gr$igram" ;
00030 if (isset($_GET["gram$igram"])) {
00031 $$gram = $tabGrams[strtr($_GET["gram$igram"]," ","_")] ;
00032 } else {
00033 $$gram = "nom de grammaire $igram non fourni" ;
00034 } # fin si
00035 } ; # fin pour igram
00036
00037 compareDtd($gr1,$gr2) ;
00038
00039 #############################################################################
00040
00041 p() ;
00042 echo href("montresource.php?nomfic=cmpdtd.php","Code source php de cette page","orange_stim nou")." ; " ;
00043 echo href("montresource.php?nomfic=cmpdtd_inc.php","code source php du fichier inclus","bleu nou")."." ;
00044 finp() ;
00045
00046 #############################################################################
00047
00048 finSection() ;
00049 finPage() ;
00050 ?>
Retour à la page principale de (gH)