I need code that will after pressing submit display concerts for selected group (grupanaziv), which includes number of sold tickets for that concert, place, and date, in database they are called place=mesto, date=datum, and tickets=karte
<p align="center"><font color="#0000FF">Pregled grupa</font></p>
<p align="center">Grupa kojoj koncert pripada:
<select name="grupa_select" id="grupa_select">
<?php
while($row = mysql_fetch_array($sql))
{
echo "<option>".$row['grupanaziv']."</option>";
}
?>
</select>
</p>
<p align="center">
<input type="submit" name="pregled_grupe" id="pregled_grupe" value="- Izaberi grupu-" />
</p>
<p>
<label></label>
</p>
Thanks in advance