Follow along with the video below to see how to install our site as a web app on your home screen.
Примечание: This feature may not be available in some browsers.
А где вы увидали там инсерт в цикле?Осмелюсь заметить, что инсерты в циклах - это первый шаг к "говнокоду".
<select name="category[]" style="width: 330px;" multiple>
<option value="0"<?php if($a['category'] == 0) { print "selected"; } ?>>Все категории</option>
<?php
$query = "SELECT id, title FROM category ORDER by title ASC";
$result = mysql_query($query);
while($row = mysql_fetch_array($result)) {
print "<option value=\"".$row['id']."\"";
if($a['category'] == $row['id']) { print "selected"; }
print ">".$row['title']."</option>";
}
?>
</select>