Jump to content

[SOLVED] Basic Question about linking dropdown lists to a new page


Newcomer

Recommended Posts

I'm fairly new to PHP, and I'm just trying to do something easy. I'm trying to link the results of what some chooses on one page in a drop down list, to a page where I'm going to echo the results. I understand how to do it with input fields, but this is confusing me.

Link to comment
Share on other sites

When you say echo the results, what do you mean? Are you querying a database with a particular value, or are we talking just how to show which option the user selected?

 

If it's the latter, then it'd be something like:

 

<?php
echo $_SERVER['PHP_SELF'];
if(isset($_POST['submit'])){
echo 'You selected option: '.$_POST['select'];
}
?>
<form action="<?php echo $_SERVER['PHP_SELF']; ?>" method="POST">
<select name="select">
<option value="one">one</select>
<option value="two">two</select>
<option value="three">three</select>
</select>
<input type="submit" name="submit" value="Submit" />
</form>

 

If you're quering a database, its pretty much the same - exept you need to add in the step of quering the database with the value from the drop down, and get the results from the database.

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.