geeting a error
Warning: mysql_fetch_assoc() expects parameter 1 to be resource, boolean given in C:\xampp\htdocs\E_COMMERCE\MENU_PAGES\apparel_pages\male_print_image.php on line 35
line 35: while($row = mysql_fetch_assoc($item_query))
<?php
...
if(isset($_POST['male_button']))
{
$order_by_p = $_POST['order_by'];
if($order_by_p == 'heigh_low')
{
$item_query = mysql_query("SELECT * FROM item WHERE sub_category='Male_T-Shirts' ORDER BY id DESC LIMIT 8");
}
}
else
{
$item_query = mysql_query("SELECT * FROM item WHERE sub_category='Male_T-Shirts' LIMIT 8");
}
while($row = mysql_fetch_assoc($item_query))
{
.....
===============
form page
<form action='male_print_image.php' method='POST'>
<label>Sub Category:</label>
<select name="order_by">
<option value="">Choose...</option>
<option value="most_popular">Most Popular</option>
<option value="title">Title</option>
<option value="newest">Newest</option>
<option value="oldest">Oldest</option>
<option value="low_heigh">Price: Low to Heigh</option>
<option value="heigh_low">Price: Height to Low</option>
</select>
<div id="submit">
<button type="submit" id="male_button" class="button" name="male_button">go</button>
</div>
</form>