Click here to Skip to main content
15,893,381 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
See more:
hi there

ive been working for an hour on this drop down menu... but it seems not to populate it.

my code is a following:

PHP
$sql = "SELECT kid FROM Kcode";
				$result = $db->query($sql); 
				
				echo "<select name='kid'>";
				echo "<option value='" . $row['kid'] . "'>Choose class</option>";
				while ($row = mysql_fetch_array($result)) {
			 	echo "<option value='" . $row['kid'] . "'>" . $row['kid'] . "</option>";
}
				echo "</select>";


i know that i use a mysqli code for the
$db->query
but i cant figure it onto the
$row


ive tried for so long now and still havent figured out why im not able to get what i want.

hope u can help me :-D
Posted

1 solution

mysql_connect('****', '****', '****');
mysql_select_db('*****');

$sql = "SELECT kid FROM Kcode WHERE lid='".$_SESSION['lid']."' AND sid='".$_SESSION['id']."'";
$result = mysql_query($sql);

echo "&";
echo "Vælg klasse";
while ($row = mysql_fetch_array($result)) {
echo "" . $row['kid'] . "</option>";
}
echo "";

?>

basicly i stripped it from mysqli and converte it to normal mysql
 
Share this answer
 

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900