Posts by Bill Rocha • 1 point
1 post
-
-2
votes2
answers426
viewsA: How to place database information in a select field in PHP
<select> <?php while ($user = $stmt->fetch(PDO::FETCH_ASSOC)){ echo '<option value="'.$user['cliente'].'">'.$user['cliente'].'</option>'; } ?> </select>…