I hope i don't sound like i am trying to ask everyone to complete my homework, but I really dont get the answer to my question. For starters, I'm in the beginning stage of learning php, and I got stuck on this point. I have 4 drop down menu items: breed, color, size, gender, all saved in one table named pets. The client selects any of the options displayed in the dropdown, and gets the rows displayed in the same window. It should have one last input text box to show the rows by postal code. From what I've read, It should be managed with arrays, but I dont really dont know how to implement this. This is the code I have so far. FYI, this code by the way, is somewhat involving copy, pasting from other examples, so it might have many syntax errors.
In advanced, thanks a lot for your help.
<table border="0" cellpadding="3" cellspacing="0" width="100%" class="searchtable">
<tr>
<td colspan="7" class="h2"><h2>Busqueda Perros Perdidos</h2></td>
</tr>
<table border="0" align="left" cellspacing="7" cellpadding="2">
<tr>
<form action="<?=$_SERVER['php_SELF']?>" method="post">
<tr>
<td class="label">Raza</td>
<td class="label">Color</td>
<td class="label">Tamano</td>
<td class="label">Genero</td>
<td class="label">Codigo Postal</td>
</tr>
<tr>
<td valign="top">
<select name="breed" class="smalltext">
<option value="0">- Todos -</option>
<option value="1">Affenpinscher</option>
<option value="150">Whippet</option>
<option value="151">Wire Fox Terrier</option>
<option value="152">Wirehaired Pointing
Griffon</option>
<option value="153">Yorkshire Terrier</option>
<option value="">---------------</option>
<option value="154">Mutt</option>
<option value="155">Other</option>
</select>
</td>
<td valign="top">
<select name="color" class="smalltext">
<option value="0">- Todos -</option>
<option value="1">Negro</option>
<option value="7">Cafe</option>
<option value="6">Dorado</option>
<option value="4">Rojo</option>
<option value="3">Plateado</option>
<option value="5">Bronceado</option>
<option value="2">Blanco</option>
</select>
</td>
<td valign="top">
<select name="size" class="smalltext">
<option value="0">- Todos -</option>
<option value="1">Pequeño</option>
<option value="2">Mediano</option>
<option value="3">Grande</option>
</select>
</td>
<td valign="top">
<select name="gender" class="smalltext">
<option value="0">- Todos -</option>
<option value="1">Macho</option>
<option value="2">Hembra</option>
</select>
</td>
<td valign="top"><input name="postal_code"
value="" size="7" maxlength="8" class="smalltext"
type="text"></td>
<td align="right"><input
src="/images/button_search.jpg" name="Submit"
style="position: relative; top: -15px; width: 95px; height: 45px;"
type="image"></td>
</tr>
</form>
<?php
// form submitted
// set server access variables
$host = "****";
$user = "****";
$pass = "****";
$db = "****";
// Open Connection
$connect = mysql_connect($host, $user, $pass) or die ("Unable to connect to host");
//Select Database
mysql_select_db($db) or die ("Unable to connect to database");
//Create Query
$strSQL = "SELECT breed, color, size, gender,
FROM pets
WHERE
(@breed IS NULL OR breed LIKE '%' + @breed + '%') AND
(@color IS NULL OR color LIKE '%' + @color + '%') AND
(@size IS NULL OR size LIKE '%' + @size + '%') AND
(@gender IS NULL OR gender LIKE '%' + @gender + '%')";
$objQuery = mysql_query($strSQL) or die ("Error Query [".$strSQL."]");
$Num_Rows = mysql_num_rows($objQuery);
$Per_Page = 2; // Per Page
$Page = $_GET["Page"];
if(!$_GET["Page"])
{
$Page=1;
}
$Prev_Page = $Page-1;
$Next_Page = $Page+1;
$Page_Start = (($Per_Page*$Page)-$Per_Page);
if($Num_Rows<=$Per_Page)
{
$Num_Pages =1;
}
else if(($Num_Rows % $Per_Page)==0)
{
$Num_Pages =($Num_Rows/$Per_Page) ;
}
else
{
$Num_Pages =($Num_Rows/$Per_Page)+1;
$Num_Pages = (int)$Num_Pages;
}
$strSQL .=" order by reg_num ASC LIMIT $Page_Start , $Per_Page";
$objQuery = mysql_query($strSQL);
?>
<table width="600" border="1">
<tr>
<th width="98"> <div align="center">Raza </div></th>
<th width="198"> <div align="center">Color </div></th>
<th width="98"> <div align="center">Tamano </div></th>
</tr>
<?
while($objResult = mysql_fetch_array($objQuery))
{
?>
<tr>
<td><?=$objResult["breed"];?></td>
<td><?=$objResult["color"];?></td>
<td><?=$objResult["size"];?></td>
</tr>
<?
}
?>
</table>
<br>
Total <?= $Num_Rows;?> Registros : <?=$Num_Pages;?> Pagina :
<?
if($Prev_Page)
{
echo " <a href='$_SERVER[SCRIPT_NAME]?Page=$Prev_Page&txtKeyword=$_GET[txtKeyword]'><< Back</a> ";
}
for($i=1; $i<=$Num_Pages; $i++){
if($i != $Page)
{
echo "[ <a href='$_SERVER[SCRIPT_NAME]?Page=$i&txtKeyword=$_GET[txtKeyword]'>$i</a> ]";
}
else
{
echo "<b> $i </b>";
}
}
if($Page!=$Num_Pages)
{
echo " <a href ='$_SERVER[SCRIPT_NAME]?Page=$Next_Page&txtKeyword=$_GET[txtKeyword]'>Next>></a> ";
}
if (mysql_num_rows($objQuery) <= 0) {
// no results
{
echo 'No hay resultados en su busqueda.';
}
} else {
do {
// output
} while($objResult = mysql_fetch_array($objQuery));
}
mysql_close($objConnect);
}
?>