Jump to content

selecting option in select?


thefortrees

Recommended Posts

Hi all -

 

I am trying to populate a drop down list from values in an array, and compare a $_REQUEST or $_SESSION value to each of the array values. If they are equal, then the option in the drop down menu will be selected. Can't get it to work... Here is my code. Any help is appreciated! Thanks.

 

	//Select menu for each type of user.
	echo
		"<td>Sort by:<select name='displayUsers' align='center'>";

	//$option holds the option values. $text holds the text of each option.
	$option = array('all', 'admin', 'business', 'personal',);
	$text = array('All', 'Administrators', 'Business Administrators', 'Personal Users',);

	//$count will be used to print each element of $text.
	$count = 0;

	//Loop to create each option element.
	foreach ($option as $value){
		//If displayUsers == value selected fromdrop down, select that option. Else, do not select.
		if ($_REQUEST['displayUsers'] == $value || $_SESSION['displayUsers'] == $value){
			echo "<option selected value='" . $value . "'>" . $text[$count] . "</option>";
			$count++;	
		}	
		else{	
			echo "<option value='" . $value . "'>" . $text[$count] . "</option>";			
			$count++;
		}
	}

Link to comment
https://forums.phpfreaks.com/topic/58086-selecting-option-in-select/
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.