Inhoud list/menu uit database halen
De <option value= "x"> moet overeen komen met de id uit de database
mysql_connect($host,$username,$password);
@mysql_select_db($database) or die( "Unable to select database");
$query="SELECT * FROM $addresstable";
$result=mysql_query($query);
$num=mysql_num_rows($result);
mysql_close();
<select name="Lijst" size="1" id="Lijst">
<option value="0">---------Geen Geselecteerd----------</option>
<option value="1">bla bla bla</option>
</select>
Hoe krijg ik dit voor elkaar?
Alvast bedankt!
Je kunt de selectbox een while-lus geven. ;)
Ik de gegeven code niet echt.
Code (php)
1
2
3
4
5
6
7
8
9
10
2
3
4
5
6
7
8
9
10
<?
echo '<select name="Voorgedritten" size="1" id="Voorgedritten">';
echo '<option value="0">---------Geen Geselecteerd----------</option>';
while($rij = mysql_fetch_array($result))
{
}
echo '</select>';
?>
echo '<select name="Voorgedritten" size="1" id="Voorgedritten">';
echo '<option value="0">---------Geen Geselecteerd----------</option>';
while($rij = mysql_fetch_array($result))
{
}
echo '</select>';
?>
Gewijzigd op 01/01/1970 01:00:00 door OMEGA_ReD
Code (php)
Zoiets? Je moet natuurlijk wel even controleren of 'id' en 'adres' kloppen, dit zijn gewoon de kolomnamen uit je tabel.
Code (php)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
<?
include("db.inc.php");
//Laad data uit database
mysql_connect($host,$username,$password);
@mysql_select_db($database) or die( "Unable to select database");
$query="SELECT * FROM $addresstable";
$result=mysql_query($query);
mysql_close();
////////////////////////
echo '<select name="Voorgedritten" size="1" id="Voorgedritten">';
echo '<option value="0">---------Geen Geselecteerd----------</option>';
while($rij = mysql_fetch_array($result))
{
echo '<option value="'.$rij['ID'].'">'.$rij['Omschrijving'].'</option>';
}
echo '</select>';
?>
include("db.inc.php");
//Laad data uit database
mysql_connect($host,$username,$password);
@mysql_select_db($database) or die( "Unable to select database");
$query="SELECT * FROM $addresstable";
$result=mysql_query($query);
mysql_close();
////////////////////////
echo '<select name="Voorgedritten" size="1" id="Voorgedritten">';
echo '<option value="0">---------Geen Geselecteerd----------</option>';
while($rij = mysql_fetch_array($result))
{
echo '<option value="'.$rij['ID'].'">'.$rij['Omschrijving'].'</option>';
}
echo '</select>';
?>