Mise en forme affichage
Résolu/Fermé
tridam23
Messages postés
99
Date d'inscription
mercredi 5 novembre 2014
Statut
Membre
Dernière intervention
11 juin 2021
-
18 sept. 2015 à 13:35
tridam23 Messages postés 99 Date d'inscription mercredi 5 novembre 2014 Statut Membre Dernière intervention 11 juin 2021 - 21 sept. 2015 à 14:21
tridam23 Messages postés 99 Date d'inscription mercredi 5 novembre 2014 Statut Membre Dernière intervention 11 juin 2021 - 21 sept. 2015 à 14:21
A voir également:
- Mise en forme affichage
- Mise en forme conditionnelle excel - Guide
- Mise a jour chrome - Accueil - Applications & Logiciels
- Mise en forme tableau croisé dynamique - Guide
- Mise a jour windows 10 - Accueil - Mise à jour
- Affichage double ecran - Guide
2 réponses
nicelife90
Messages postés
615
Date d'inscription
vendredi 24 septembre 2010
Statut
Membre
Dernière intervention
10 avril 2018
151
19 sept. 2015 à 23:28
19 sept. 2015 à 23:28
Bonjour,
Pourquoi utiliser une boucle? Est-ce que ta requête retourne plusieurs lignes?
Pourquoi utiliser une boucle? Est-ce que ta requête retourne plusieurs lignes?
nicelife90
Messages postés
615
Date d'inscription
vendredi 24 septembre 2010
Statut
Membre
Dernière intervention
10 avril 2018
151
19 sept. 2015 à 23:50
19 sept. 2015 à 23:50
<?php require_once("connection.php"); $codeEleve = isset($_GET['code'])?$_GET['code']:NULL; if($codeEleve ){ $sql = "SELECT * FROM ELEVES WHERE CODE= '$codeEleve'"; $rs=mysql_query($sql) or die(mysql_error() . "<br><b> Requete :</b><br>".$sql); }else{ echo "<br> AUCUN CODE ELEVE PASSE EN PARAMETRES !<br>"; print_r($_GET); } ?> <html> <head> <meta charset="utf-8"> <title>Détails Elève</title> <link href="stle.css" rel="stylesheet" type="text/css"> </head> <body> <table border="0"> <tbody> <tr> <td><h2>Jewels International School of Kinshasa <br> 6705, Av. O.U.A., Commune de Ngaliema Kinshasa, <br> Democratic Republic of Congo</h2></td> <td><img src="logo/logo.png" width="88" height="89" alt=""/></td> </tr> </tbody> </table> <?php while ($ET = mysql_fetch_assoc($rs)) { ?> <table> <tr> <th scope="row">CODE :</th> <td><?php echo $ET['CODE']; ?></td> </tr> <tr> <th scope="row">PHOTO :</th> <td><img src='images/<?php echo $ET['PHOTO']; ?>' width='90' height='113' /></td> </tr> <tr> <th scope="row">Grade/Classe :</th> <td><?php echo $ET['CLASSE']; ?></td> </tr> <tr> <th scope="row">Section :</th> <td><?php echo $ET['SECTION']; ?></td> </tr> <tr> <th scope="row">Groupement :</th> <td><?php echo $ET['GROUPEMENT']; ?></td> </tr> <tr> <th scope="row">Date of inscription/Date d'Inscription : </th> <td><?php echo $ET['INSCRIPTION']; ?></td> </tr> <tr> <th scope="row">Name of Student/Nom de l'étudiant: Last/Nom:</th> <td><?php echo $ET['NOM']; ?></td> </tr> <tr> <th scope="row">Name/Prenom :</th> <td><?php echo $ET['PRENOM']; ?></td> </tr> <tr> <th scope="row">Middle/Post-nom :</th> <td><?php echo $ET['POSTNOM']; ?></td> </tr> <tr> <th scope="row">Date of Birth/Date de naissance :</th> <td><?php echo $ET['NAISSANCE']; ?></td> </tr> <tr> <th scope="row">Gender/Sexe :</th> <td><?php echo $ET['SEXE']; ?></td> </tr> <tr> <th scope="row">COUNTRY OF BIRTH/PAYS DE NAISSANCE :</th> <td><?php echo $ET['PAYS']; ?></td> </tr> <tr> <th scope="row">NATIONALITY/NATIONALITE :</th> <td><?php echo $ET['NATIONALITE']; ?></td> </tr> <tr> <th scope="row">ADDRESS/ADRESSE :</th> <td><?php echo $ET['ADRESSE']; ?></td> </tr> <tr> <th scope="row">NAME BY WHICH THE CHILD IS MOST FREQUENTLY CALLED/NOM PAR LEQUEL L'ENFANT EST SOUVENT IDENTIFIE :</th> <td><?php echo $ET['SURNOM']; ?></td> </tr> <tr> <th scope="row">RELIGION :</th> <td><?php echo $ET['RELIGION']; ?></td> </tr> <tr> <th scope="row">FATHER'S OR GUARDIAN'S NAME/NOM DU PERE ou TUTEUR :</th> <td><?php echo $ET['PERE']; ?></td> </tr> <tr> <th scope="row">PHONE N°/NUMERO TEL. :</th> <td><?php echo $ET['TELPERE']; ?></td> </tr> <tr> <th scope="row">HOME ADDRESS/ADRESSE DU DOMICILE :</th> <td><?php echo $ET['ADRESSE1']; ?></td> </tr> <tr> <th scope="row">E-MAIL ADDRESS/ADRESSE ELECTRONIQUE :</th> <td><?php echo $ET['EMAIL']; ?></td> </tr> <tr> <th scope="row">EMPLOYER/EMPLOYEUR - Company/Entreprise :</th> <td><?php echo $ET['EMPLOYEUR']; ?></td> </tr> <tr> <th scope="row">EMPLOYER'S ADDRESS/ADRESSE DE L'EMPLOYEUR :</th> <td><?php echo $ET['ADRESSEEMP']; ?></td> </tr> <tr> <th scope="row">MOTHER'S OR GUARDIAN'S NAME/NOM DE LA MERE ou TUTEUR :</th> <td><?php echo $ET['MERE']; ?></td> </tr> <tr> <th scope="row">PHONE N°/NUMERO TEL. :</th> <td><?php echo $ET['TELMERE']; ?></td> </tr> <tr> <th scope="row">HOME ADDRESS/ADRESSE DU DOMICILE (If different from above/Si différente de celle-ci-haut mentionnée):</th> <td><?php echo $ET['ADRESSE2']; ?></td> </tr> <tr> <th scope="row">E-MAIL ADDRESS/ADRESSE ELECTRONIQUE :</th> <td><?php echo $ET['EMAIL2']; ?></td> </tr> <tr> <th scope="row">EMPLOYER/EMPLOYEUR - Company/Entreprise :</th> <td><?php echo $ET['EMPLOYEUR1']; ?></td> </tr> <tr> <th scope="row">EMPLOYER'S ADDRESS/ADRESSE DE L'EMPLOYEUR :</th> <td><?php echo $ET['ADRESSEEMP2']; ?></td> </tr> <tr> <th scope="row">If neither parent nor guardian can be reached in an emergency, contact: / En cas d'urgence, si le parent ou le tuteur est injoignable, contacter: NAME/NOM :</th> <td><?php echo $ET['NOM1']; ?></td> </tr> <tr> <th scope="row">ADDRESS/ADRESSE :</th> <td><?php echo $ET['ADRESSE5']; ?></td> </tr> <tr> <th scope="row">PHONE N°/NUM. TEL. :</th> <td><?php echo $ET['TEL1']; ?></td> </tr> <tr> <th scope="row">NAME/NOM :</th> <td><?php echo $ET['NOM2']; ?></td> </tr> <tr> <th scope="row">ADDRESS/ADRESSE :</th> <td><?php echo $ET['ADRESSE6']; ?></td> </tr> <tr> <th scope="row">PHONE N°/NUM. TEL. :</th> <td><?php echo $ET['TEL2']; ?></td> </tr> <tr> <th scope="row">CHILD'S DOCTOR/MEDECIN DE L'ENFANT :</th> <td><?php echo $ET['MEDENFT']; ?></td> </tr> <tr> <th scope="row">PHONE N°/NUM. TEL. :</th> <td><?php echo $ET['TELMED']; ?></td> </tr> <tr> <th scope="row">DOCTOR'S ADDRESS/ADRESSE DU MEDECIN :</th> <td><?php echo $ET['ADRESSEMED']; ?></td> </tr> <tr> <th scope="row">CHILD'S DENTIST/DENTISTE DE L'ENFANT :</th> <td><?php echo $ET['DENTENFT']; ?></td> </tr> <tr> <th scope="row">PHONE N°/NUM. TEL :</th> <td><?php echo $ET['TELDENT']; ?></td> </tr> <tr> <th scope="row">DENTIST'S ADDRESS/ADRESSE DU DENTISTE :</th> <td><?php echo $ET['ADRESSEDENT']; ?></td> </tr> <tr> <th scope="row">Please give any information concerning your child which you think may be helpful to us. (PLAY AND EATING HABITS, FEARS, LIKES AND DISLIKES, CHRONIC HEALTH CONDITIONS & MEDICATIONS - ASTHMA, ALLERGIES, ETC.)/ Veuillez fournir toute information utile concernant l'enfant. (DIVERTISSEMENT & REGIME ALIMENTAIRE, PEURS, PREFERENCES & AVERSIONS, MALADIES CHRONIQUES & MEDICAMENTS - ASTHME, ALLERGIES, ETC. :</th> <td><?php echo $ET['UTILE']; ?></td> </tr> <tr> <th scope="row">Other children in family/Autres enfants dans la famille:</th> <td><?php echo $ET['FAM1']; ?></td> </tr> <tr> <th scope="row">Age :</th> <td><?php echo $ET['AGE1']; ?></td> </tr> <tr> <th scope="row">Gender/Sexe : Homme/Male :</th> <td><?php echo $ET['SEX1']; ?></td> </tr> <tr> <th scope="row">Other children in family/Autres enfants dans la famille:</th> <td><?php echo $ET['FAM2']; ?></td> </tr> <tr> <th scope="row">Age:</th> <td><?php echo $ET['AGE2']; ?></td> </tr> <tr> <th scope="row">Gender/Sexe : Homme/Male :</th> <td><?php echo $ET['SEX2']; ?></td> </tr> <tr> <th scope="row">Other children in family/Autres enfants dans la famille:</th> <td><?php echo $ET['FAM3']; ?></td> </tr> <tr> <th scope="row">Age :</th> <td><?php echo $ET['AGE3']; ?></td> </tr> <tr> <th scope="row">Gender/Sexe : Homme/Male :</th> <td><?php echo $ET['SEX3']; ?></td> </tr> <tr> <th scope="row">Other children in family/Autres enfants dans la famille:</th> <td><?php echo $ET['FAM4']; ?></td> </tr> <tr> <th scope="row">Age:</th> <td><?php echo $ET['AGE4']; ?></td> </tr> <tr> <th scope="row">Gender/Sexe : Homme/Male :</th> <td><?php echo $ET['SEX4']; ?></td> </tr> <tr> <th scope="row">List other adults in the family (relation to child)/Autres enfants dans la famille (relations avec l'enfant):</th> <td><?php echo $ET['AUTRESENFT']; ?></td> </tr> <tr> <th scope="row"> <p>IMMUNIZATION RECORD/CARNET DE VACCINATION:</p> <p>(Please enter the date of the last immunization/Veuillez indiquer la date du dernier vaccine.) Immunization/Vaccin DPT/Diphtérie (Date)</p></th> <td><?php echo $ET['DATEDPT']; ?></td> </tr> <tr> <th scope="row">Immunization/Vaccin MMR/Rougeole (Date) :</th> <td><?php echo $ET['DATEROUGEOLE']; ?></td> </tr> <tr> <th scope="row">Immunization/Vaccin Oral Polio/Polio Oral (Date) :</th> <td><?php echo $ET['DATEPOLIO']; ?></td> </tr> <tr> <th scope="row">Immunization/Vaccin Yellow fever/FièvreJaune (Date) :</th> <td><?php echo $ET['DATEJAUNE']; ?></td> </tr> <tr> <th scope="row">Immunization/Vaccin Cholera (Date) :</th> <td><?php echo $ET['DATECHOLERA']; ?></td> </tr> <tr> <th scope="row">Immunization/Vaccin Other/Autre (Date) :</th> <td><?php echo $ET['DATEAUTRES']; ?></td> </tr> <tr> <th scope="row">Should an emergency arise, I hereby give my permission to the school to call a doctor for medical or surgical care for my child. / En cas d'urgence, j'autorise l'école à faire appel à un médecin pour une éventuelle intervention médicale ou chirurgicale en faveur de mon enfant:</th> <td><?php echo $ET['AUTREMED']; ?></td> </tr> <tr> <th scope="row">It is understood that a conscientious effort will be made to locate me or/Il est entendu qu'un effort devra être fourni au préalable pour me localiser ou:</th> <td><?php echo $ET['ADRESSEAUTRE']; ?></td> </tr> <tr> <th scope="row">before any action is taken, but if it is not possible to contact me, I will accept this action. I accept all the emergency treatment charges/avant d'entreprendre quelque action que ce soit; mais s'il n'est pas possible de me contacter, j'accepterai toute action entreprise par l'école. Je m'engage donc à m'acquitter des frais d'urgence. : </th> <td><?php echo $ET['DATEFIN']; ?></td> </tr> <tr> <th scope="row">Date :</th> <td><?php echo $ET['DATEFIN']; ?></td> </tr> <tr> <th scope="row">FIELD TRIPS/VISITES GUIDEES I give permission for child to go on trips away from the premises of the school, whether on foot or by vehicle. Pour les activités parascolaires, j'autorise aussi mon enfant d'aller en visite guidée en dehors de l'école, à pied ou en véhicule, sous l'encadrement de l'enseignant. :</th> <td><?php echo $ET['DATEGUIDE']; ?></td> </tr> <tr> <th scope="row">Date :</th> <td><?php echo $ET['DATEGUIDE']; ?></td> </tr> <tr> <th scope="row">PREVIOUS SCHOOL/ECOLE ANTERIEURE NAME OF PREVIOUS SCHOOL ATTENDED (IF NOT JEWELS)/NOM DE L'ECOLE PRECEDENTE (SI PAS JEWELS) :</th> <td><?php echo $ET['ECOLEFREQ']; ?></td> </tr> <tr> <th scope="row">DATE STUDENT ATTENDED/PERIODE DE FREQUENTATION: From/De:</th> <td><?php echo $ET['FREQ1']; ?></td> </tr> <tr> <th scope="row">To/A :</th> <td><?php echo $ET['FREQ2']; ?></td> </tr> <tr> <th scope="row">GRADE COMPLETED/CLASSE FREQUENTEE :</th> <td><?php echo $ET['CLASSEFREQ']; ?></td> </tr> </table> <?php } //fin du while ?> <script type="text/javascript"> window.print() ; </script> </body> </html>
tridam23
Messages postés
99
Date d'inscription
mercredi 5 novembre 2014
Statut
Membre
Dernière intervention
11 juin 2021
21 sept. 2015 à 14:21
21 sept. 2015 à 14:21
Merci pour ton aide. dur dur d'etre débutant !!!
Merci beaucoup !!!!!!
Merci beaucoup !!!!!!