Valid XHTML     Valid CSS2    

Listing du fichier sen_hist_rep.php avec syntaxhighlighter


        <?php
        include("mesfonctions3.php") ;
        debutPage("Questionnaire d'histoire") ;
        include("sen_hist.php") ;
        $tabh = hist() ;
        
        h1_version1("Questionnaire d'histoire") ;
        
        echo "<p>Voici la correction.</p>\n" ;
        
        echo "<blockquote>\n ";
        echo "<table border='thin solid 1'>\n ";
        
        $ide = 0 ; # indice de numéro
        $cum = 0 ; # cumul des points
        echo "<tr>\n" ;
        echo "<th>Evènement</th>\n" ;
        echo "<th>Date exacte</th>\n" ;
        echo "<th>Votre réponse</th>\n" ;
        echo "<th>Cumul des points</th>\n" ;
        echo "</tr>\n" ;
        foreach ($tabh as $cle => $valeur) {
          $ide++ ;
          echo "<tr>\n" ;
          echo "<td>$valeur</td>\n" ;
          echo "<td>$cle</td>\n" ;
          $rep = $_GET["c".$ide] ;
          if ($rep==$cle) {
             $cum++ ;
             $rep = "<span style ='color : green'>&nbsp;$rep&nbsp;</span>" ;
          } else {
             $rep = "<span style ='color : red'>&nbsp;$rep&nbsp;</span>" ;
          } ; # fin de si
          echo "<td>$rep</td>\n" ;
          echo "<td>$cum</td>\n" ;
          echo "</tr>\n" ;
        } ; # fin pourchaque
        echo "</table>\n ";
        echo "</blockquote>\n ";
        
        finPage() ;
        ?>
        

La coloration syntaxique est réalisée par : SyntaxHighlighter.

Si vous préférez, vous pouvez utiliser celle de geshi ou même celle construite autour de la fonction highlight_file.

 

 

retour gH    Retour à la page principale de   (gH)