Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Dropdown data not being sent to $_POST php

Tags:

html

forms

php

I'm new to coding, and have encountered some difficulty with the drop-down list. Would appreciate any help given!

I have this:

<html>
    <select name="Subject">
    <option value="One">One</option>
    <option value="Two">Two</option>
    </select>
</html>

<?php
if (isset($_POST['submit'])) {
    echo $_POST['Subject']; 
}
echo '
<form method="post"><input type="submit" name="submit" value="Submit Option!"></form>';
?>

This returns me with an unidentified index error for 'Subject' whenever I hit the Submit Option button. I did a print_r($_POST) and realized that my selected options for the drop-down list "Subject" did not pass through. (i.e. The $_POST array that was printed did not show anything selected options from the drop-down list)

like image 386
Gin.A Avatar asked Mar 04 '26 05:03

Gin.A


2 Answers

To submit your selected value to PHP you need to put <select> inside <form> code like below:-

<html>
    <form method="post">
    
    <select name="Subject">
    <option value="One">One</option>
    <option value="Two">Two</option>
    </select>

    <input type="submit" name="submit" value="Submit Option!"></form>
</html>
<?php
if (isset($_POST['Subject'])){
echo $_POST['Subject']; 
}
?>
like image 63
Anant Kumar Singh Avatar answered Mar 06 '26 17:03

Anant Kumar Singh


One of the first things to know about HTML forms is that, when a form is submitted, the information contained within it gets submitted. To submit a value for Subject, that field needs to be contained within the <form> element.

<html>
    <?php
    if (isset($_POST['submit'])) {
        echo $_POST['Subject']; 
    }
    ?>
    <form method="post">
        <select name="Subject">
            <option value="One">One</option>
            <option value="Two">Two</option>
        </select>

        <input type="submit" name="submit" value="Submit Option!">
    </form>
</html>
like image 28
Chris Forrence Avatar answered Mar 06 '26 19:03

Chris Forrence



Donate For Us

If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!