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.
<form method="post" action="">
<select name="brand">
<option>BMW</option>
<option>Mercedes</option>
</select>
<br/><br/>
<input type="submit" name="submit" value="Избери" />
</form>
<?php
// Извикваш си връзката
mysql_query("SET NAMES cp1251");
if(isset($_POST['submit'])) {
$brand=$_POST['brand'];
if($brand == BMW) {
$select=mysql_query("SELECT * FROM `table` WHERE ` row`='BMW'") or die(mysql_error());
echo "<select>";
while($row=mysql_fetch_array($select) {
echo "<option>".$row['име']."</option>";
}
</select>
}
if($brand == Mercedes) {
$select=mysql_query("SELECT * FROM `table` WHERE ` row`='Mercedes'") or die(mysql_error());
echo "<select>";
while($row=mysql_fetch_array($select) {
echo "<option>".$row['име']."</option>";
}
</select>
}
}
?>