Here's an example of how to insert multiple rows into a MySQL database via a form using PHP:
HTML form:
<form action="insert.php" method="post">
<input type="text" name="names[]" placeholder="Name">
<input type="text" name="ages[]" placeholder="Age">
<input type="text" name="emails[]" placeholder="Email">
<input type="text" name="names[]" placeholder="Name">
<input type="text" name="ages[]" placeholder="Age">
<input type="text" name="emails[]" placeholder="Email">
<input type="submit" value="Insert">
</form>
PHP code (insert.php):
<?php
$names = $_POST['names'];
$ages = $_POST['ages'];
$emails = $_POST['emails'];
$db = new PDO('mysql:host=localhost;dbname=mydatabase', 'username', 'password');
$sql = "INSERT INTO mytable (name, age, email) VALUES (:name, :age, :email)";
$stmt = $db->prepare($sql);
for ($i = 0; $i < count($names); $i++) {
$name = $names[$i];
$age = $ages[$i];
$email = $emails[$i];
$stmt->bindParam(':name', $name);
$stmt->bindParam(':age', $age);
$stmt->bindParam(':email', $email);
$stmt->execute();
}
$db = null;
header('Location: confirmation.php');
exit();
?>
In this example, the form data is passed to the PHP script via arrays with the same name (names[], ages[], emails[]). The PHP script then loops through the arrays using a for loop and inserts each set of data into the MySQL database using a prepared statement with placeholders.
Note that you should always sanitize and validate user input to prevent security vulnerabilities, and you should consider implementing measures to prevent duplicate data entry (e.g. checking if the data already exists in the database before inserting it).