membres.fct.php from Gulus at Krugle
Show membres.fct.php syntax highlighted
<?php
function mod_print_title()
{
echo "Membres";
}
function mod_print_header()
{
global_mod_format_title("Membres", "pics/malehead.png");
}
function titre_item($titre)
{
echo '<TH align="left" BGCOLOR="#067289"><font size=+1 color=white><B>'. $titre.'</B></font></TH>';
}
function start_box_admin($tag, $nom, $email)
{
echo '<A NAME="' . $tag . '">';
echo '<TABLE CELLSPACING="0" CELLPADDING="1" BORDER="0" WIDTH="100%" BGCOLOR=black><TR><TD>';
echo '<TABLE CELLSPACING="0" CELLPADDING="4" BORDER="0" WIDTH="100%" BGCOLOR=white>';
echo '<TR>';
echo '<TH align="left" BGCOLOR="#067289"><font color=white><B>'. $nom . '</font></TH>';
echo '<TH align="right" BGCOLOR="#067289"><font color=white>' . $email . '</FONT></TH>';
echo '</TR><TR><TD COLSPAN=2>';
}
function end_box_admin()
{
echo '</TD></TR></TABLE>';
echo '</TD></TR></TABLE>';
}
?>
See more files for this project here