=0) { //Fabrication des trois tableaux $tabOldPers = array(); $tabOldPersMail = array(); $tabNewPers = array(); if (isset( $_GET['dataParticipants'] ) ) $tabNewPers = $_GET['dataParticipants']; for($i=0;$i0) { $row = mysql_fetch_array($result); return ($row['idP']); } else { $result = mysql_query("INSERT INTO Personne (courrielP,loginP) VALUES ('$persMail','$persMail')"); //return (mysql_insert_id($result)); return (mysql_insert_id()); } return (0); } //Fonction qui affiche toutes les liste public ainsi que les liste privée possédées par idP function generate_html_array_list ($idP) { $result = mysql_query("SELECT idL,libelleL,estPrivee FROM Liste WHERE idP_Createur=$idP OR estPrivee='non' ORDER BY estPrivee"); echo "\n\n\n\n\n"; if (mysql_num_rows($result)>0) { for($i=0;$i\n\n\n\n"; } } echo "
TypeLibellé
"; if ($row['estPrivee'] == 'oui') echo 'Privée' ; else echo 'Public'; echo ""; echo ""; echo $row['libelleL']; echo "\n"; echo "
\n"; } ?>