22 lines
841 B
PHP
Executable File
22 lines
841 B
PHP
Executable File
<?php
|
|
$nomFicAppelant = basename(__FILE__);
|
|
// -----------------------------------------------------
|
|
// Requete googleID
|
|
// -----------------------------------------------------
|
|
$i=0;
|
|
$reqSelect="SELECT * FROM googleID; ";
|
|
if (isset($debug[2]) && $debug[2] == '1') { $debugMsg .= monDebug(2, ['requete googleID' => $reqSelect], 'gID.reqSelect.php');}
|
|
|
|
$resConn=$idPdo->query($reqSelect);
|
|
if ($resConn) {
|
|
while ($tabResult = $resConn->fetch(PDO::FETCH_ASSOC)) {
|
|
$gIDTab[$i]=$tabResult['id'];
|
|
$gDescTab[$i]=$tabResult['description'];
|
|
$gScriptTab[$i]=$tabResult['gScript'];
|
|
$gScriptTab[$i]=stripslashes($gScriptTab[$i]);
|
|
if (isset($debug[2]) && $debug[2] == '1') { $debugMsg .= monDebug(2, ['id' => $gIDTab[$i], 'description[i]' => $gDescTab[$i], 'gScriptTab['.$i.']'
|
|
=> $gScriptTab[$i] ], '');}
|
|
$i++;
|
|
}
|
|
}
|
|
?>
|