Can i request for help, i have a drop-down ff. => http://i48.tinypic.com/35a3vqa.jpg and my preoblem now is SELECTING FROM LIST. i know you are all familiar from this. i just like, when i was select category: netbook-> the next paroduct name: all netbook product will be available to select. :
I have code for selecting category, but the next product name, i reallt have no idea, what to do.
Code: Select all
$query = "SELECT cat_name FROM tbl_category";
$x = mysql_query($query);
echo "Category: <select name = 'slc_inbranch'>";
while($v = mysql_fetch_array($x))
{
echo "<option value = $v[cat_name]> $v[cat_name]</option>";
}
echo "</select>";Please help, very needed..