form.php
Código PHP:
// ...
if (isset($_GET['error']) == 1) {
print "Error: Todos los campos deben estar llenos<br>";
}
<form method='post' action='tramita.php'>
<input type='file' name='ficheroe'>
<input type='file' name='ficherov'>
<input type='file' name='ficheroi'>
// ...
Código PHP:
if ( (empty($_POST['ficheroe']['name'])) or (empty($_POST['ficherov']['name'])) or (empty($_POST['ficheroi']['name'])) ) {
header("location: form.php?error=1");
}
else
header("location: valido.php");
¿no estoy consultando bien si los inputs estan rellenos?
gracias !!