Skip to main content
Stack Overflow
  1. About
  2. For Teams

You are not logged in. Your edit will be placed in a queue until it is peer reviewed.

We welcome edits that make the post easier to understand and more valuable for readers. Because community members review edits, please try to make the post substantially better than how you found it, for example, by fixing grammar or adding additional resources and hyperlinks.

Required fields*

Required fields*

Dynamic drop down list using html and php

I'm learning html and php, I have a mysql DB employees where there is a table called Employees_hired, which stores id, name, department and type of contract. I want to make a drop down list of employees who belong to a type of department and a specific contract type. In the code would be something like:

<html> 
<head>
 <title>Dynamic Drop Down List</title>
</head>
<body>
 <form id="form1" name="form1" method="post" action="<?php $_SERVER['PHP_SELF']?>">
 department: 
 <select id="department" name="department" onchange="run()"> <!--Call run() function-->
 <option value="biology">biology</option>
 <option value="chemestry">chemestry</option>
 <option value="physic">physic</option>
 <option value="math">math</option> 
 </select><br><br>
 type_hire: 
 <select id="type_hire" name="type_hire" onchange="run()"> <!--Call run() function-->
 <option value="internal">Intenal</option>
 <option value="external">External</option> 
 </select><br><br>
 list of employees:
 <select name='employees'>
 <option value="">--- Select ---</option>
 <?php
 mysql_connect("localhost","root","");
 mysql_select_db("employees_hired");
 $list=mysql_query("SELECT name FROM usuario WHERE (department ='". $value_of_department_list ."') AND (contrasena ='". $value_of_type_hire."')";);
 while($row_list=mysql_fetch_assoc($list)){
 ?>
 <option value="<?php echo $row_list['name']; ?>">
 <?php if($row_list['name']==$select){ echo $row_list['name']; } ?>
 </option>
 <?php
 }
 ?>
 </select>
 </form> 
</body>
</html>

The question I have is: how to get the selected values ​​from the first drop-down lists (type_hire and department) for use in the query and fill the drop down list of employees. I know how to fill a dropdown list by querying the DB (what I learned in an online course) but I do not know how to take the values ​​from the dropdown lists and use them in my practice. I read that I can use "document.getElementById (" id "). Value" to give that value to the variable in the query, but nowhere explained in detail how. I am new to web programming and my knowledge of Javascript are poor. Can anyone tell me the best way to do this?. It is possible only using html and php or I have to use javascript?

Answer*

Draft saved
Draft discarded
Cancel

default

AltStyle によって変換されたページ (->オリジナル) /