Jump to content

[SOLVED] Dynamic while loop


rhyspaterson

Recommended Posts

Hey lads just looking for a bit of help with this dynamic select list menu i'm building.

 

$array can have any number of variables. i would like to list whatever is in it in a select menu.

 

<?php 

$i = 0;

echo "<select name=\"select\">\n";

while ($i <= $array){
?><option value=""><?php echo $array[i];?></option>
<?php 
$i = $i + 1;
}
?>
</select>

 

At the moment it doesn't work obviously, haha. Any pointers?

Link to comment
https://forums.phpfreaks.com/topic/53242-solved-dynamic-while-loop/
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.