>DansTonCode();

Tous les codes sources "Et pourtant ca fonctionne !"page 10

PHP
 12 June, 2013 à 10:25
#18
<?
if($GLOBALS["IS_REP_USER"])
   {
       $GLOBALS["AFF_DROITE"]=false;
       $GLOBALS["AFF_PUB_GAUCHE"]=false;
       if(!detectionAOL())
       {
           initSession();
           if($GLOBALS["IS_REP_USER"])
           {
              /* ... */
           }
       }
   }
?>
PHP
 15 May, 2013 à 23:10
#11
<?
if($test == true) {
  return true;
} else if($test == false) {
  return false;
}
?>