khadrani_arif

khadrani_arif
- Name: [not set]
- Favorite Languages: [not set]
- Website: [not set]
- Location: [not set]
- About Me: [not set]
-
I want list of subcategories on selecting the Category list box
12/26/2009 - 00:02
<?
include "config.php";
$cat = mysql_query("select id,title from jos_categories where section='com_vehiclemanager'");
?>
// Form 1
Select Category
<?
while($row=mysql_fetch_array($cat))
{ ?>
" <? if($_REQUEST['category']==$row['id'])
{?> selected = "selected" <? } ?>> <? echo $row['title']; ?>
<?
}
?>
// Form 2
<script>
function reload(form)
{
var val=form1.category.options[form1.category.options.selectedIndex].value;
self.location='imagemove.php?cat=' + val ;
}
function fillmodel()
{
<?
if(isset($cat) and strlen($cat) > 0){
echo "document.form2.model.disabled = false;";
}
else{echo "document.form2.model.disabled = true;";}
?>
</script>
Recent Comments