Business
Jobs
  • About Us
  • Solutions
    • Job Postings
      Post your job and receive qualified candidates in 48h.
    • Candidate Assessments
      500+ technical and psychological tests, plus anti-fraud.
    • Headhunting
      Tailor-made executive search from start to finish.
    • Payroll + EOR
      Payroll dispersal and EOR across 15+ LATAM countries.
  • Pricing
  • Jobs

0

148
Views
Dropdown is not working in PHPDesktop-chrome

I created a website on which we can add candidates and select their positions from a dropdown menu in a modal. It works fine as a website but I wanted to convert it into an application with PHPDesktop-Chrome. The rest of the functions works fine but the dropdown lists are not working i.e., the list does not open after clicking.

<div class="form-group">
    <label for="position" class="col-sm-3 control-label">Position</label>

    <div class="col-sm-9">
        <select class="form-control dropdown-toggle" id="position" name="position" required>
            <option value="" selected>- Select -</option>
            <?php
                $sql = "SELECT * FROM positions";
                $query = $conn->query($sql);
                while($row = $query->fetch_assoc()){
                    echo "
                        <option value='".$row['id']."'>".$row['description']."</option>
                    ";
                }
            ?>
        </select>
    </div>
</div>
about 4 years ago · Juan Pablo Isaza
Answer question
Find remote jobs

Discover the new way to find a job!

Top jobs
Top job categories
Business
Post vacancy Pricing Sales
Legal
Terms and conditions Privacy policy
© 2026 PeakU Inc. All Rights Reserved.
Andres GPT
Show me some job opportunities
There's an error!