I need some help with my dropdown, im trying to populate it but its not working.
[php]$sql = “SELECT publisher_name FROM publishers WHERE publisher_id=?”;
$stmt = $pdo->prepare($sql);
$stmt->execute(array($_POST[‘publisher_id’]));
$result = $stmt->fetch(PDO::FETCH_ASSOC);[/php]
My dropdown
[code]
<option>----- Select -----</option>
<?php foreach($result as $option) : ?>
<option value="<?= $option->publisher_id; ?>"><?= $option->publisher_name; ?></option>
<?php endforeach ?>
</select>[/code]