how to retain drop down values as the value selected after submit

Course Queries Syllabus Queries 3 years ago

6.75K 1 0 0 0

User submissions are the sole responsibility of contributors, with TuteeHUB disclaiming liability for accuracy, copyrights, or consequences of use; content is for informational purposes only and not professional advice.

Answers (1)

Post Answer
profilepic.png
manpreet Tuteehub forum best answer Best Answer 3 years ago


My drop down is showing blank then when i select the value of dropdown the same value is showing, but i have to show dropdown value as select first then when I click on button the respective value should show

I am doing a Php program

php $_PHP_SELF?>"> for="courseDisp" class="col-sm-2" style="margin-top:10px;">Course : php $course="SELECT * from course"; $res= $conn->query($course); if($res->num_rows>0) { echo ''; } else { echo "0 result"; } ?> &nbsp;&nbsp; for="yearDisp" class="col-sm-2" style="margin-top:10px;">Year : php $year="SELECT distinct(year) from syllabus"; $res= $conn->query($year); if($res->num_rows>0) { echo ''; } else { echo "0 result"; } ?> <script type="text/javascript"> document.getElementById('courseDisp').value = "php echo $_POST['courseDisp'];?>"; document.getElementById('yearDisp').value = "php echo $_POST['yearDisp'];?>";

 

                                                    &nbsp;

                                                    <input type="submit" class="btn col-sm-2" style="margin-left:15px;margin-top:10px;width:60px;font-weight:bold;font-size:15px;" value="GO" name="btnGo" id="btnGo" />

                                                form>
0 views
0 shares

No matter what stage you're at in your education or career, TuteeHUB will help you reach the next level that you're aiming for. Simply,Choose a subject/topic and get started in self-paced practice sessions to improve your knowledge and scores.

Similar Forum