merci encore
connections et requête
<?php if(!isset($_GET['VARtheme'])) $_GET['VARtheme']=1;//init de VARtheme si non déclaré ?>
<?php require_once('../Connections/connexionboutique.php'); ?>
<?php
mysql_select_db($database_connexionboutique, $connexionboutique);
$query_rsTheme = "SELECT * FROM rubriques ORDER BY theme ASC";
$rsTheme = mysql_query($query_rsTheme, $connexionboutique) or die(mysql_error());
$row_rsTheme = mysql_fetch_assoc($rsTheme);
$totalRows_rsTheme = mysql_num_rows($rsTheme);
$coltitre_rsCatalogue = "mehari";
if (isset($_GET['VARtitre'])) {
$coltitre_rsCatalogue = (get_magic_quotes_gpc()) ? $_GET['VARtitre'] : addslashes($_GET['VARtitre']);
}
$coltheme_rsCatalogue = "1";
if (isset($_GET['VARtheme'])) {
$coltheme_rsCatalogue = (get_magic_quotes_gpc()) ? $_GET['VARtheme'] : addslashes($_GET['VARtheme']);
}
mysql_select_db($database_connexionboutique, $connexionboutique);
$query_rsCatalogue = sprintf("SELECT rubriques.theme, articles.reference, articles.titre, articles.auteur, articles.photo FROM rubriques, articles WHERE articles.rubriqueID=%s AND rubriques.ID=articles.rubriqueID AND articles.titre LIKE '%%%s%%'", $coltheme_rsCatalogue,$coltitre_rsCatalogue);
$rsCatalogue = mysql_query($query_rsCatalogue, $connexionboutique) or die(mysql_error());
$row_rsCatalogue = mysql_fetch_assoc($rsCatalogue);
$totalRows_rsCatalogue = mysql_num_rows($rsCatalogue);
?>
<form name="form1" method="get" action="catalogue.php">
<div align="center"><span class="Style5"><font size="3" face="Verdana, Arial, Helvetica, sans-serif">Sélectionnez
un thème :</font></span>
<select name="VARtheme" id="VARtheme">
<?php
do {
?>
<option value="<?php echo $row_rsTheme['ID']?>"<?php if (!(strcmp($row_rsTheme['ID'], $_GET['VARtheme']))) {echo "SELECTED";} ?>><?php echo $row_rsTheme['theme']?></option>
<?php
} while ($row_rsTheme = mysql_fetch_assoc($rsTheme));
$rows = mysql_num_rows($rsTheme);
if($rows > 0) {
mysql_data_seek($rsTheme, 0);
$row_rsTheme = mysql_fetch_assoc($rsTheme);
}
?>
</select>
<span class="Style5"><font size="3" face="Verdana, Arial, Helvetica, sans-serif">ou saisissez
un titre</font></span> :
<input name="VARtitre" type="text" id="VARtitre">
<input type="submit" name="Submit" value="AFFICHER">
</div>
</form>
<p> </p>
<table width="650" border="0" align="center" cellspacing="0" bordercolor="#000099">
<tr>
<td><table width="650" border="0" align="center" cellpadding="0" cellspacing="0">
<tr bgcolor="#0000CC">
<td height="22" colspan="4"> <div align="center"></div> <div align="center"><strong></strong></div> <div align="center"><strong></strong></div>
<div align="center"><strong><font color="#FFFFFF" size="2" face="Verdana, Arial, Helvetica, sans-serif">Liste des ventes</font></strong></div></td>
</tr>
<?php do { ?>
<tr>
<td width="162" rowspan="3"><div align="center"><font size="2" face="Verdana, Arial, Helvetica, sans-serif"><?php echo $row_rsCatalogue['photo']; ?><img name="photo" src="../images/<?php echo $row_rsCatalogue['photo']; ?>" alt="photo fiche"></font></div></td>
<td width="162"><div align="center"><font size="2" face="Verdana, Arial, Helvetica, sans-serif"><?php echo $row_rsCatalogue['auteur']; ?></font></div></td>
<td width="162"><div align="center"></div></td>
<td width="164"><div align="center"><font size="2" face="Verdana, Arial, Helvetica, sans-serif"></font></div></td>
</tr>
<tr>
<td><font size="2" face="Verdana, Arial, Helvetica, sans-serif"><?php echo $row_rsCatalogue['theme']; ?></font></td>
<td> </td>
<td> </td>
</tr>
<tr>
<td><font size="2" face="Verdana, Arial, Helvetica, sans-serif"><a href="fiche.php?reference=<?php echo $row_rsCatalogue['reference']; ?>"><?php echo $row_rsCatalogue['titre']; ?></a></font></td>
<td> </td>
<td> </td>
</tr>
<tr>
<td colspan="4"><hr align="center" size="2" noshade color="#000099"></td>
</tr>
<?php } while ($row_rsCatalogue = mysql_fetch_assoc($rsCatalogue)); ?>
<tr>
<td colspan="4"><div align="center"><font size="2" face="Verdana, Arial, Helvetica, sans-serif">Sélectionnez
un thème et éventuellement le titre d'un livre
et cliquez sur AFFICHER<br>
puis, pour consulter la fiche d'un livre, cliquez sur son
titre. </font></div></td>