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