Elcorsu 79
| Posté : 28-02-2019 00:40
ou un plus court qui récupère les mails des membres su club <?
!include! ("mainfile.php");
!include!("header.php");
$textsize10 = 3; # Grand Titre
$textsize12 = 1; # Texte Lignes
$textcolor10 = "red"; # &n bsp;Grand Titre
$textcolor12 = "black"; # Texte Lignes
echo "<center><font color=\"$textcolor10\" size=\"$textsize10\"><b>$niveau : Les mails des inscrits au CPGD&n bsp;pour la saison en cours</b></font></cent er>";
echo "<center><font color=\"$textcolor12\" size=\"$textsize10\"><b>ceci pour que vous puissiez la copier dans votre fournisseur mail pour des envois groupés</b></font></center>";
function niveau() {
global $sortby, $list;
$niveauplongee = array ("".translate("All")."", "Préparation&nbs p;Niveau 1","Niveau 1","Niveau 2","Niveau 3","Niveau 4 ","Niveau 5","Initiateur","MF1","MF2","TIV","Nitrox","VHF");
echo "<table width=\"1 00%\" border=\"0\"><tr><td width=\"50%\" align=\"cen ter\" valign=\"top\">";
echo "Sélection par niveau :";
$num = count($niveauplongee) - 1;
$counter = 0;
while (list(, $npl) = each($niveauplongee)) {
echo "<a href=\"cpgd_mail.ph p?niveau=$npl\" class=\"noir\">$npl</a>";
if ( $counter == round($num/1) ) {
echo " <br /> ";
} elseif ( $counter != $num ) {
echo " |& amp;nbsp;";
}
$counter++;
}
echo "</form>";
echo "</td></tr>";
}
niveau();
$niveau=removeHack(stripslashes(htmlspecialchars($niveau, ENT_QUOTES)));
$sortby=removeHack($sortby);
if (!isset($niveau)) { $niveau = translate("All"); }
  ; if ( $niveau != "".translate("All")."" AND $niveau == "Niveau 1" ){
  ; $where= "where niveau like '".$niveau."%'";
  ; } else if ( $niveau != "".translate("All")."" ) {
  ; $where= "where niveau like '%".$niveau."%'";
  ; } else {
  ; $where= "";
}
echo " <br/><br/>";
echo "<tr><tr&g t;";
echo "<ce nter><table width=\"90%\" border=\"1\"><tr><td  ;width=\"50%\"><font color=\"$textcolor12\" size=\"$textsize10\">";
$res = @mysql_query("SELECT * FROM cpgd_membres&n bsp;$where ORDER BY nom");
$rows = mysql_numrows($res);
$col++;
while ($ligne = mysql_fetch_array($res)) {
$oui = $ligne["oui"];
$email = $ligne["Email"];
  ; if (empty($oui))echo "";
  ; else
{
  ; if (empty($email))echo "";
  ; else echo "$email , ";
  ; }
}
  ; $col++;
echo "</font></ td></tr>\n";
echo " </table>";
echo " <br><br>";
echo " </table>";
echo "<br><br&g t;";
!include!("footer.php");
?>
|