Listing du fichier repx.php avec syntaxhighlighter
<?php # (gH) -_- repx.php ; TimeStamp (unix) : 16 Mars 2009 vers 10:35 #################################################################### $pouces = -1 ; $cm = -1 ; if (isset($_GET["pouces"])) { $pouces = $_GET["pouces"] ; $cm = $pouces*2.54 ; } ; # fin si #################################################################### $xmldct = new DOMDocument('1.0'); $conv = $xmldct->createElement('conv'); $elt_pouces = $xmldct->createElement('pouces'); $elt_pouces->appendChild($xmldct->createTextNode($pouces)); $elt_cm = $xmldct->createElement('cm'); $elt_cm->appendChild($xmldct->createTextNode($cm)); $xmldct->appendChild($conv) ; $conv->appendChild($elt_pouces) ; $conv->appendChild($elt_cm) ; echo $xmldct->saveXML() ; #################################################################### ?>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 à la page principale de (gH)