>DansTonCode();

Tous les codes sourcespage 81

PHP
 17 May, 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;
        }
    }
}
?>
PHP
 17 May, 2013 à 12:10
#14
<?
function dateStringToSql($str)
{
    $retour=NULL;

    return($retour);
}
?>