Tous les codes sources "Mais pourquoi ?"page 46
PHP
24 Juin, 2013 à 09:46
#21
<?
$password=trim(mb_strtolower($_GET["password"]));
$passwordVerif=trim(mb_strtolower($_GET["passwordVerif"]));
?>
PHP
29 Mai, 2013 à 09:58
#69
<?
if($GLOBALS["IS_ADMIN"] && true==false)
{
//
}
?>
PHP
17 Mai, 2013 à 16:25
#15
<?
function integrationGoogleMaps(&$gmaps)
{
$gmaps=false;
if(isset($GLOBALS["GOOGLE_MAPS"]) && $GLOBALS["GOOGLE_MAPS"]!="")
{
if(!function_exists($GLOBALS["GOOGLE_MAPS"]))
{
?></head>
<body><?affMessageErreur("fonction de carte ".$GLOBALS["GOOGLE_MAPS"]." inconnue")?></body></html><?
endPage();
exit();
}
else
{
$GLOBALS["GOOGLE_MAPS"]();
$gmaps=true;
}
}
}
?>