Jump to content

[SOLVED] loop de loop


burnside

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
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
Share on other sites

$sql = "SELECT * FROM `members` ";
$result = mysql_query($sql) or die(mysql_error());
echo "<select>";
while ($test = mysql_fetch_assoc($result)) {
     $username = $test['username'];
      echo "<option>$username</option>";
}
echo "</select>";

Link to comment
Share on other sites

This thread is more than a year old. Please don't revive it unless you have something important to add.

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Restore formatting

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • 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.