PHPMailer send email with array
问题 Hi I have question about HTML form array and PHP. For example I have name and email but ask 6 times and I want to send this mail. What I should edit to work? thank you! HTML: <form method="Post" action="send.php" onSubmit="return validate();"> <?php $amount=6; //amount shows the number of data I want to repeat for( $i = 0; $i < $amount; $i++ ) { ?> <b>Data <?php echo $i+1 ?>º</b> <input type="edit" name="Name[]" size="40"> <input type="edit" name="email[]" size="40"> <br> <?php } ?> <input