Jump to content

[SOLVED] selected problem


dennismonsewicz

Recommended Posts

$i = 10;
							while($i <= 50)
							{
								switch($limit) {
									case "$i":
										$s = "SELECTED";
									break;
								}

							   echo '<option value="' . $i . '" ' . $s . '>' . $i . '</option>';
							   $i += 10;
							}
							echo '<option value="all" ' . $s . '>All</option>';

 

The above code is supposed to select the current selected value but when I view the HTML all of the options are selected... any ideas? Thanks for any help :)

Link to comment
https://forums.phpfreaks.com/topic/140684-solved-selected-problem/
Share on other sites

You are never resetting $s to equal ""

 

$i = 10;
                        while($i <= 50)
                        {
                           $s = "";  // reset $s
                           switch($limit) {
                              case "$i":
                                 $s = "SELECTED";
                              break;
                           }
                           
                           echo '<option value="' . $i . '" ' . $s . '>' . $i . '</option>';
                           $i += 10;
                        }
                        echo '<option value="all" ' . $s . '>All</option>';

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.