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 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146
| <?php session_start();
/*===================================================*/
// index.php
/*===================================================*/
include_once("frame.class.php");
include_once("db_film.class.php");
include_once("traitement.php");
FRAME::en_tete();
FRAME::menu();
FRAME::corps_begin("RESULTATS DE RECHERCHE");
?>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<script>
function poponload_modif(id)
{
popup = window.open("http://192.168.0.38/site2 avec modification benjamin /edit_film.php?id_contact=" + id, "Edit", "location=1,status=1,scrollbars=1,width=2000,height=1800, left=1600,top=1400");
}
function poponload_supp(id)
{
var msg = "Êtes-vous sur de vouloir supprimer ce contact ?";
if (confirm(msg))
popup = window.open("http://192.168.0.38/site2 avec modification benjamin /supp_film.php?id_contact=" + id, "Edit", "location=1,status=1,scrollbars=1,width=600,height=500, left=300,top=200");
}
function poponload_visualisation(id)
{
popup = window.open("http://192.168.0.38/site2 avec modification benjamin /fiche_contact.php?id_contact=" + id, "Edit", "location=1,status=1,scrollbars=1,width=2000,height=1800, left=1600,top=1400");
}
</script>
</head>
<body onload="window.parent.opener.location.href='#'; window.self.close()">
<center>
<table border>
<tr bgcolor="#dedede">
<th>Id_contact</th>
<th>Prénom</th>
<th>Nom</th>
<th>Structure</th>
<th>Type</th>
<th>Select</th>
<th>Ville</th>
<th>Montant_adhesion</th>
<th>Adresse2</th>
<th>Mail</th>
<th>Supp</th>
<?
for( $i = 0 ; $i < count($rech); $i++)
{
if( $i % 2 == 0 ) { $coul ="#AAB734"; }else{ $coul = "#CFDF3F"; }
$c=$rech[$i];
echo '<tr bgcolor='.$coul.'>';
echo '<td>'.$c->id_contact.'</td>
<td>'.$c->Prenom.'</td>
<td>'.$c->Nom.'</td>
<td>'.$c->Structure.'</td>
<td>'.$c->Categorie_principale.' '.$c->Spe_agriculture.' '.$c->Spe_Bois.' '.$c->Spe_Repas.'</td>
<td><a href="javascript:poponload_modif('.$c->id_contact.');"><img src="image/modifier.gif" /></a></td>';
echo '<td>'.$c->Ville.'</td>
<td>'.$c->Montant_adhesion.'</td>
<td>'.$c->Adresse2.'</td>
<td><a href="mailto:'.$c->Mail.'"> @</a>'.$c->Mail.'</td>
<td><a href="javascript:poponload_supp('.$c->id_contact.');"><img src="image/supprimer.png" /></a></td>';
echo '</tr>';
echo "\n";
}
echo '</table></center></br>';
echo '<left>';
echo ' Nombre de résultats : '.$i;
echo '</left></br>';
?>
<center>
<table>
<tr>
<form action="export.csv.php">
<input type="submit" value="Exporter" />
</form>
<th><input type="submit" name="Envoi Mail" value="Envoi Mail" />
<input type="button" name="CheckAll" value="Select All" onClick="checkAll(document.contact.choix); "/></th>
<?php
?>
</tr>
</table></center></form>
</body>
</html>
<?php
FRAME::corps_end();
FRAME::pied();
?> |
Partager