I have my code:
var tr = '<tr class="tr_new">';
tr +='<td><input type="text" name="txt_comi_cond1[]" class="moneda" size="10"></td>';
tr +='<td><input type="text" name="txt_comi_cond2[]" class="mone...
I have the following code,
<?php
session_start();
/* Inicia validacion del lado del servidor */
if (empty($_POST['sheets'])) {
$errors[] = "Hojas vacío";
} else if (empty($_POST['title'])) {
$errors[] = "Asunto vacío";...