I want to do something like this but I keep getting errors in my program:
<?php
echo "
Some code
here "if(isset($_GET[\"cat\"]) && is_numeric($_GET[\"cat\"]))"
{ some code }"
if($cat!= null && is_numeric($cat))
{
<select name=\"model\" onChange=\"autoSubmit();\">
<option value=\"model\"> Model</option>
$sql = \"SELECT * FROM model WHERE cat_id = $cat \";
$mode = mysql_query($sql,$conn) or die(mysql_error());
while($row = mysql_fetch_array($mode))
{
and here<option value=\"$row[mod_id]\" \" . ($model == $row[\"mod_id\"]? \" selected\" : \"\") . \">$row[model]</option>;
}
</select>
}
"
?>
Can you please tell me why?


some code– Mr. Alien Oct 13 '12 at 6:43;at the end. – Eric Oct 13 '12 at 6:43