Jump to content

[SOLVED] loop de loop


Recommended Posts

hey all, I have a bit of doe thats working but now how i expected, 

 

$sql = "SELECT * FROM `members` ";
		$result = mysql_query($sql);
		while ($test = mysql_fetch_assoc($result)) {


		$username = array("$test[username]"); 

		foreach ( $username as $element ) { 
   
    			echo "<select><option>$element</option></select>"; 

		} 			

its gets all the records, but instead of populationg one box its creats a new one for every box,

 

i bet its a simple fix or solution but just cant see were iv gone wrong :(

Link to comment
https://forums.phpfreaks.com/topic/107783-solved-loop-de-loop/
Share on other sites

thanx for the reply but hasnt changed, still putting each record in its own drop down box rather that just one single one,

 


$sql = "SELECT * FROM `members` ";
		$result = mysql_query($sql);
		while ($test = mysql_fetch_assoc($result)) {

		$username = array($test['username']);
		echo "<select>";
		foreach ($username as $element) {
    			echo "<option>{$element}</option>";
		}
		echo "</select>";




		}

Link to comment
https://forums.phpfreaks.com/topic/107783-solved-loop-de-loop/#findComment-552465
Share on other sites

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.