Código
<!DOCTYPE html> <html> <head> <style> body,html{ background-color:black; color:white; text-align:center; } table{ background-color:green; margin-left:auto; margin-right:auto; border:1px solid white; padding:5px; } </style> <title> UPLOADER v1.2</title> </head> <body> <h2>UPLOADER v1.2</h2> <table> <form action="uploader1.php" method="post" enctype='multipart/form-data'> <tr> Seleccionar archivo: <br> <td> <input type="file" name="file"/> </td> <td> <input type="submit" name="upload" value="Subir!" /> </td> </form> </table> </body> </html>
Código
<html> <head> <meta charset="utf-8"> <title> UPLOADER v1.1</title> <style> body,html{ background-color:black; color:white; text-align:center; } #show{ background-color:green; border:1px solid white; padding:5px; } </style> </head> <body> <h2>UPLOADER v1.2</h2> <h3> Información del archivo: </h3><br> <span id="show"> <?php } $dir = 'uploader/'; // Ruta $tmp = $_FILES['file']['tmp_name']; $name = $_FILES['file']['name']; function validar($ext,$permitidas){ return $v; } if(validar($ext,$permitidas)){ echo move_uploaded_file($tmp, $dir.$name) ? "Archivo subido correctamente <a href='$subido'>Aqui</a>" : 'No se ha podido subir el archivo'; }else{ } ?> </span> </body> </html>
PD: No soy buen diseñador (como lo habrán notado xD) me gustaría ver consejos también del css.
Salu2!