Отправить несколько текстовых полей в массиве в PHP
У меня есть следующий код в моем файле: <table width="100%" class="friends"> <tr> <th width="50%">Friends Name</th> <th>Friends Email</th> </tr> <tr> <td><input type="text" name="friendname[]" id="friendname[]" class="validate[minSize[4]]" min="4" placeholder="John & Jane Doe" style="width:80%;" /></td> <td><input type="text" name="friendemail[]" id="friendemail[]" class="validate[custom[email]]" min="4" placeholder="jandjdoe@example.com" style="width:80%;" /></td> </tr> <tr> <td><input type="text" name="friendname[]" id="friendname[]" class="validate[minSize[4]]" min="4" placeholder="John & Jane Doe" style="width:80%;" /></td> <td><input […]