הינה השגיאה:
קוד:
Parse error: parse error, unexpected T_STRING, expecting ',' or ';' in /home/idanre/domains/idan.be/public_html/topsites/register.php on line 124
והינה הקוד של הלולאה
PHP קוד:
<select name='category_id'>
$category_query="SELECT * FROM categories ORDER BY id DESC";
$result=@mysql_query($category_query,$con);
while ($row=mysql_fetch_array($result))
{
echo "<option value=".$row["id"].">".$row["catname"]."</option>";
}
</select>