1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131
| <html>
<?php
$connection=mysql_connect("localhost", "root", "") or die ("message d'erreur".mysql_error($connection));
$base=("test");
if(!$connection)
die("connection impossible");
$mabasededonnee=$base;
mysql_select_db($mabasededonnee) or die ("pas de connection");
$formchoix=$_POST["formchoix"];
$formselection=$_POST["formselection"];
$indiv=explode("\n", $formselection);
$row=count($indiv)-1; //-1 parce que lorsqu'on copie colle depuis un classeur Excel, il laisse toujours une ligne vide en dessous en plus
for($i=0; $i<=$row-1; $i++)
{
$requete="select machine.codemachine, marque, modele, numerodeserie, affectation, service, datefingarantie, codepostal, ville, site, employe.codee, nom, prenom, tel, fax, mobile, mail, lieudetravail, adresse, fonction from employe, machine, jointure where employe.codee=jointure.codee and jointure.codemachine=machine.codemachine and machine.codemachine='$indiv[$i]';";
$resultat=mysql_query($requete);
$ligneresultat=mysql_fetch_array($resultat);
if(!$ligneresultat)
{
echo "<br>"."<br>"."<br>"."<br>"."<br>";
echo "<table border=1 bordercolor=#000000 width=850 height=80 align=center bgcolor=#BCBCBC>";
echo "<tr height 20>";
echo "<td align=center>"."<h1>"."<big>"."<b>"."Aucun enregistrement ne correspond"."</b>"."</big>"."</h1>"."</td>";
echo "</tr>";
echo "</table>";
echo $i;
echo $indiv[$i];
echo $requete;
echo $resultat;
}
else
{
echo "<center>"."<i>"."<h1>"."<big>"."Informations sur la machine"."</big>"."</h1>"."</i>"."</center>"."<br>";
echo "<table border=1 bordercolor=#000000 width=600 height=80 align=center bgcolor=#BCBCBC>";
echo "<tr height=20>";
echo "<td>"."Code machine"."</td>";
echo "<td>".$ligneresultat['codemachine']."</td>";
echo "</tr>";
echo "<tr height=20>";
echo "<td>"."Marque"."</td>";
echo "<td>".$ligneresultat['marque']."</td>";
echo "</tr>";
echo "<tr height=20>";
echo "<td>"."Modèle"."</td>";
echo "<td>".$ligneresultat['modele']."</td>";
echo "</tr>";
echo "<tr height=20>";
echo "<td>"."Numéro de série"."</td>";
echo "<td>".$ligneresultat['numerodeserie']."</td>";
echo "</tr>";
echo "<tr height=20>";
echo "<td>"."Affectation"."</td>";
echo "<td>".$ligneresultat['affectation']."</td>";
echo "</tr>";
echo "<tr height=20>";
echo "<td>"."Service"."</td>";
echo "<td>".$ligneresultat['service']."</td>";
echo "</tr>";
echo "<tr height=20>";
echo "<td>"."Date de fin de garantie"."</td>";
echo "<td>".$ligneresultat['datefingarantie']."</td>";
echo "</tr>";
echo "<tr height=20>";
echo "<td>"."Code postal"."</td>";
echo "<td>".$ligneresultat['codepostal']."</td>";
echo "</tr>";
echo "<tr height=20>";
echo "<td>"."Ville"."</td>";
echo "<td>".$ligneresultat['ville']."</td>";
echo "</tr>";
echo "<tr height=20>";
echo "<td>"."Site"."</td>";
echo "<td>".$ligneresultat['site']."</td>";
echo "</tr>";
echo "<tr height=20>";
echo "<td>"."Code employe"."</td>";
echo "<td>".$ligneresultat['codee']."</td>";
echo "</tr>";
echo "<tr height=20>";
echo "<td>"."Nom"."</td>";
echo "<td>".$ligneresultat['nom']."</td>";
echo "</tr>";
echo "<tr height=20>";
echo "<td>"."Prénom"."</td>";
echo "<td>".$ligneresultat['prenom']."</td>";
echo "</tr>";
echo "<tr height=20>";
echo "<td>"."Téléphone"."</td>";
echo "<td>".$ligneresultat['tel']."</td>";
echo "</tr>";
echo "<tr height=20>";
echo "<td>"."Fax"."</td>";
echo "<td>".$ligneresultat['fax']."</td>";
echo "</tr>";
echo "<tr height=20>";
echo "<td>"."Mobile"."</td>";
echo "<td>".$ligneresultat['mobile']."</td>";
echo "</tr>";
echo "<tr height=20>";
echo "<td>"."E-mail"."</td>";
echo "<td>".$ligneresultat['mail']."</td>";
echo "</tr>";
echo "<tr height=20>";
echo "<td>"."Lieu de travail"."</td>";
echo "<td>".$ligneresultat['lieudetravail']."</td>";
echo "</tr>";
echo "<tr height=20>";
echo "<td>"."Adresse physique"."</td>";
echo "<td>".$ligneresultat['adresse']."</td>";
echo "</tr>";
echo "<tr height=20>";
echo "<td>"."Fonction"."</td>";
echo "<td>".$ligneresultat['fonction']."</td>";
echo "</tr>";
echo "</table>";
}
} |
Partager