I have an extensive form so I separated the HTML and several parts but I want to continue to save in the same table.
Example:
$sqlinsert = "INSERT INTO tb_detalhe_trabalhador (Nome1, Funcao1, MedicaValidade) VALUES ('".$Nome1."','".$Funcao1."','".$MedicaValidade."')
if ($sqlinsert)
{
echo "<script>var r = confirm('Adicionar novo trabalhador?');" .
"if (r == true) {window.open('Trabalhadores2.html','_self','false');}" .
"else {window.open('Equipamentos.html','_self','false');}</script>";
}
If the user confirms I want the insert another worker to open another form page and I want it to be saved
$sqlinsert = "INSERT INTO tb_detalhe_trabalhador (Nome2, Funcao2, MedicaValidade2) VALUES ('".$Nome2."','".$Funcao2."','".$MedicaValidade2."')
if ($sqlinsert)
{
echo "<script>var r = confirm('Adicionar novo trabalhador?');" .
"if (r == true) {window.open('Trabalhadores3.html','_self','false');}" .
"else {window.open('Equipamentos.html','_self','false');}</script>";
}
Is it possible to stay the form?