Código
<?php $sql = "SELECT MAX(ID) FROM inscripciones"; $max_id = $row[0]+1; $_FILES['voucher']['name'] = $max_id."_".$_FILES['voucher']['name']; $upload_dir = '/home/name/public_html/inscripciones/vouchers/'; $extension = $_FILES['voucher']['type']; $size = $_FILES['voucher']['size']; $upload_file = $upload_dir.($_FILES['voucher']['name']); $voucher_nombre_db = $_FILES['voucher']['name']; echo '<html> <head> <title>Titulo Web</title> <META http-equiv="refresh" content="1; url=http://www.dominio.com/inscripciones/inscripcion.php"> </head> <body> <p>ERROR: Debe ingresar sus nombres.</p> </body> </html>'; echo '<html> <head> <title>Titulo Web</title> <META http-equiv="refresh" content="1; url=http://www.dominio.com/inscripciones/inscripcion.php"> </head> <body> <p>ERROR: Debe ingresar sus apellidos.</p> </body> </html>'; echo '<html> <head> <title>Titulo Web</title> <META http-equiv="refresh" content="1; url=http://www.dominio.com/inscripciones/inscripcion.php"> </head> <body> <p>ERROR: Debe ingresar su DNI o Carne de Extranjeria.</p> </body> </html>'; echo '<html> <head> <title>Titulo Web</title> <META http-equiv="refresh" content="1; url=http://www.dominio.com/inscripciones/inscripcion.php"> </head> <body> <p>ERROR: Debe completar los datos de persona dependiente.</p> </body> </html>'; echo '<html> <head> <title>Titulo Web</title> <META http-equiv="refresh" content="1; url=http://www.dominio.com/inscripciones/inscripcion.php"> </head> <body> <p>ERROR: Debe ingresar sus numeros telefonicos.</p> </body> </html>'; echo '<html> <head> <title>Titulo Web</title> <META http-equiv="refresh" content="1; url=http://www.dominio.com/inscripciones/inscripcion.php"> </head> <body> <p>ERROR: Debe ingresar el numero de telefono fijo.</p> </body> </html>'; echo '<html> <head> <title>Titulo Web</title> <META http-equiv="refresh" content="1; url=http://www.dominio.com/inscripciones/inscripcion.php"> </head> <body> <p>ERROR: Debe ingresar el numero de telefono celular.</p> </body> </html>'; echo '<html> <head> <title>Titulo Web</title> <META http-equiv="refresh" content="1; url=http://www.dominio.com/inscripciones/inscripcion.php"> </head> <body> <p>ERROR: Debe completar los datos del comprobante factura.</p> </body> </html>'; echo '<html> <head> <title>Titulo Web</title> <META http-equiv="refresh" content="1; url=http://www.dominio.com/inscripciones/inscripcion.php"> </head> <body> <p>ERROR: Debe adjuntar la imagen del voucher (Formatos permitidos: JPG, PNG, GIF / Tamaño Maximo: 200 KB).</p> </body> </html>'; else{ mysql_query("INSERT INTO inscripciones(Nombres,Apellidos,DNI_CarneExtranjeria,Tipo_Persona,Empresa,Cargo,Direccion,Telefono_Fijo,Telefono_Celular,Tipo_Comprobante,Razon_Social,RUC,Nombre_Voucher) VALUES('$nombres','$apellidos','$DNI_CarneExtranjeria','$tipo_persona','$empresa','$cargo','$direccion','$telefono_fijo','$telefono_celular','$tipo_comprobante','$razon_social','$RUC','$voucher_nombre_db')",$link); echo '<html> <head> <title>Titulo Web</title> <META http-equiv="refresh" content="2; url=http://www.dominio.com/inscripciones/inscripcion.php"> </head> <body> <p>Registro exitoso.</p> </body> </html>'; } } ?>