Answers for "populate dropdown using array PHP"

PHP
1

how to populate dropdown list with array values in php

<select name="mydropdown">
        <option selected="selected">Choose one</option>
        <?php
        // A sample product array
        $products = array("Mobile", "Laptop", "Tablet", "Camera");
        
        // Iterating through the product array
        foreach($products as $item){
            echo "<option value='strtolower($item)'>$item</option>";
        }
        ?>
</select>
Posted by: Guest on May-13-2021

Code answers related to "populate dropdown using array PHP"

Browse Popular Code Answers by Language