I got a select box where i can choose a Project-ID and pass it to the next form with a submit button. Right now it looks like this:
This is my code:
<form name="form2" action="formular3.php" method="post">
<p><strong>Choose Project:</strong></p>
<select name = "project_id">
<?php
while ($row = mysqli_fetch_array($result)) {
echo "<option value =" . $row['project_id'] . "> Project_ID: " . $row['project_id'] . " - (" . $row['name'] . ")</option>";
}
?>
</select>
<input type="submit" value="Send" />
</form>
Now I want to have a list which has a Submit-button for every row. It should look like this:

