Computer Science, asked by dhanu638111, 2 months ago

We click on this button to select new button​

Answers

Answered by luckyprathluckyprath
0

Explanation:

<select id = "statement" name = "statement">

<?php

$select = "SELECT name FROM Statements";

$res = $conn->query($select);

while($row = $res->fetch_assoc()){

echo "<option value=\"" . $row['name'] . "\">" . $row['name'] . "</option>";

}

?>

</select>

☛------------Finish-------------☚

Similar questions