Jump to content

How to implement drop down list?


raysefo

Recommended Posts

Hi,

 

Lets say I have something like this ;

<select name="games" size="3">
<option value="1">game1</option>
<option value="2">game2</option>
</select>

I would like to select one of them from the list and get the value of the selected one. How can I do it?

 

Best Regards.

Link to comment
Share on other sites

From what you've provided we can't give a 100% accurate answer, but assuming your form is set up to submit via POST you can access it in your PHP script using the $_POST super global.

Link to comment
Share on other sites

Try this:

<?php
if ($_POST['games']!='') echo '<h1>Last time you selected '.$_POST['games'].'</h1>'; 
?>
<form action="mypage.php" method="POST">
<p>Select a game:</p>
<select name="games" size="3">
<option value="1">game1</option>
<option value="2">game2</option>
</select>
<input type="submit">
</form>

save it as mypage.php and run it a couple of times to see how it works.

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.