Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- <!DOCTYPE html>
- <html>
- <head>
- <title>Formulário de Envio de Imagem</title>
- </head>
- <body>
- <h1>Formulário de Envio de Imagem</h1>
- <?php
- if(isset($_FILES['arquivo'])){
- $ext = strtolower(substr($_FILES['arquivo']['name'], -4));
- $novo_nome = md5(time()) . $ext;
- $diretorio = "uploads/";
- move_uploaded_file($_FILES['arquivo']['tmp_name'], $diretorio.$novo_nome);
- echo "<br><br>Imagem enviada com sucesso para a pasta 'uploads': ".$novo_nome;
- }
- else{
- ?>
- <form action="<?php echo $_SERVER['PHP_SELF']; ?>" method="post" enctype="multipart/form-data">
- <input type="file" name="arquivo"><br><br>
- <input type="submit" value="Enviar">
- </form>
- <?php
- }
- ?>
- <br><br>
- <a href="enviar_imagem.php">
- <input type="button" value="Voltar">
- </a>
- </body>
- </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement