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
| <?php require_once('Connections/pinard_connect.php'); ?>
<?php
if (!function_exists("GetSQLValueString")) {
function GetSQLValueString($theValue, $theType, $theDefinedValue = "", $theNotDefinedValue = "")
{
if (PHP_VERSION < 6) {
$theValue = get_magic_quotes_gpc() ? stripslashes($theValue) : $theValue;
}
$theValue = function_exists("mysql_real_escape_string") ? mysql_real_escape_string($theValue) : mysql_escape_string($theValue);
switch ($theType) {
case "text":
$theValue = ($theValue != "") ? "'" . $theValue . "'" : "NULL";
break;
case "long":
case "int":
$theValue = ($theValue != "") ? intval($theValue) : "NULL";
break;
case "double":
$theValue = ($theValue != "") ? doubleval($theValue) : "NULL";
break;
case "date":
$theValue = ($theValue != "") ? "'" . $theValue . "'" : "NULL";
break;
case "defined":
$theValue = ($theValue != "") ? $theDefinedValue : $theNotDefinedValue;
break;
}
return $theValue;
}
}
mysql_select_db($database_pinard_connect, $pinard_connect);
$query_Rs_region = "SELECT * FROM region ORDER BY region ASC";
$Rs_region = mysql_query($query_Rs_region, $pinard_connect) or die(mysql_error());
$row_Rs_region = mysql_fetch_assoc($Rs_region);
$totalRows_Rs_region = mysql_num_rows($Rs_region);
mysql_select_db($database_pinard_connect, $pinard_connect);
$query_RsPlat = "SELECT * FROM categorie ORDER BY plat ASC";
$RsPlat = mysql_query($query_RsPlat, $pinard_connect) or die(mysql_error());
$row_RsPlat = mysql_fetch_assoc($RsPlat);
$totalRows_RsPlat = mysql_num_rows($RsPlat);
mysql_select_db($database_pinard_connect, $pinard_connect);
$query_RsPrix = "SELECT prix FROM produit ORDER BY prix ASC";
$RsPrix = mysql_query($query_RsPrix, $pinard_connect) or die(mysql_error());
$row_RsPrix = mysql_fetch_assoc($RsPrix);
$totalRows_RsPrix = mysql_num_rows($RsPrix);
?>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>recherche</title>
<style type="text/css">
h1 {
text-align:center;}
form {
margin: 0 33%;
}
fieldset {
padding: 15px;
border: 1px solid #F00;
}
label {
display:inline;
float:left;
width: 125px;
font: bold 12px "Trebuchet MS", Arial, Helvetica, sans-serif;
}
</style>
</head>
<body>
<form id="form1" name="form1" method="post" action="resultat.php">
<fieldset>
<p>
<label>Region : </label>
<select name="VARregion" id="VARregion">
<?php
do {
?>
<option value="<?php echo $row_Rs_region['region']?>"><?php echo $row_Rs_region['region']?></option>
<?php
} while ($row_Rs_region = mysql_fetch_assoc($Rs_region));
$rows = mysql_num_rows($Rs_region);
if($rows > 0) {
mysql_data_seek($Rs_region, 0);
$row_Rs_region = mysql_fetch_assoc($Rs_region);
}
?>
</select>
</p>
<p>
<label>Plat : </label>
<select name="VARplat" id="VARplat">
<?php
do {
?>
<option value="<?php echo $row_RsPlat['plat']?>"><?php echo $row_RsPlat['plat']?></option>
<?php
} while ($row_RsPlat = mysql_fetch_assoc($RsPlat));
$rows = mysql_num_rows($RsPlat);
if($rows > 0) {
mysql_data_seek($RsPlat, 0);
$row_RsPlat = mysql_fetch_assoc($RsPlat);
}
?>
</select>
</p>
<p>
<label>Prix : </label>
<select name="VARprix" id="VARprix">
<?php
do {
?>
<option value="<?php echo $row_RsPrix['prix']?>"><?php echo $row_RsPrix['prix']?></option>
<?php
} while ($row_RsPrix = mysql_fetch_assoc($RsPrix));
$rows = mysql_num_rows($RsPrix);
if($rows > 0) {
mysql_data_seek($RsPrix, 0);
$row_RsPrix = mysql_fetch_assoc($RsPrix);
}
?>
</select>
</p>
<p>
<input type="submit" name="envoi" id="envoi" value="Envoyer" />
</p>
</fieldset>
</form>
</body>
</html>
<?php
mysql_free_result($Rs_region);
mysql_free_result($RsPlat);
mysql_free_result($RsPrix);
?> |
Partager