Valid XHTML     Valid CSS2    

Listing du fichier combienMysqli.php avec syntaxhighlighter


        <?php
        #   # (gH)   -_-  combienMysqli.php  ;  TimeStamp (unix) : 27 Janvier 2021 vers 16:57
        include("../std.php") ;
        debutPage(" fonction COMBIEN en PHP / MySQLi ")  ;
        h1("Comptages ") ;
        blockquote() ;
        debutSection() ;
        ###################################################
        
        function combien_pas_terrible($cnx,$ndlt) {
        
           $res = $cnx->query("select count(*) from $ndlt ") ;
           $tdr = mysqli_fetch_array($res) ;
           echo "$ndlt : ".$tdr["count(*)"]." enregistrements." ;
        
        } # fin function combien_pas_terrible
        
        ###################################################
        
        function combien($cnx,$ndlt) {
        
           $cha = "count(*)";
           $res = $cnx->query("select $cha from $ndlt ") ;
           $tdr = mysqli_fetch_array($res) ;
           return( $tdr[$cha] ) ;
        
        } # fin function combien
        
        ###################################################
        
        $cnx = mysqli_connect("localhost","anonymous","anonymous","statdata") ;
        
        combien_pas_terrible($cnx,"elf") ;
        br() ; ;
        combien_pas_terrible($cnx,"titanic") ;
        br() ; ;
        combien_pas_terrible($cnx,"ronfle") ;
        br() ;
        
        ###################################################
        
        $tab = "ronfle" ;
        $nbe = combien($cnx,$tab) ;
        echo " il y a $nbe enregistrements dans $tab " ;
        
        ###################################################
        
        $cnx->close() ;
        
        finSection() ;
        finblockquote() ;
        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)