Guest FONSENIX Postado Janeiro 31, 2005 Denunciar Share Postado Janeiro 31, 2005 Caros amigos do SB,eu estou usando uma código para enviar imagens para o servidor .Ele funciona direitinho mas eu gostaria de ver a imagem depois de enviada num Iframe então adicionei uma linha:<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"><html><head> <link rel="stylesheet" href="adm_style.css" type="text/css"> <title>Picture Upload</title></head><body><?phprequire("class.upload.php");$input_field_name = "picturefile";$accepted_mime_types = array('image/jpg', 'image/jpeg', 'image/gif', 'image/png', 'image/pjpeg');$destination_folder = "C:\Arquivos de programas\EasyPHP1-7\www\phoenix\produtos/";$overwrite = false; //Overwrite the file if it exists$upload = new upload($input_field_name);/** * The following three lines are optional. * They set some upload-limits. */$upload->set_max_file_size(153604);$upload->set_max_image_size(640, 480); //in pixels$upload->set_accepted_mime_types($accepted_mime_types);$upload->draw_simple_form('Upload pictures', 'upload-example.php'); //the second argument is optionalif ($_SERVER['REQUEST_METHOD'] == 'POST'){ $result = $upload->move($destination_folder, $overwrite); if ($result == true){ echo "<br>" . $upload->file['name'] . " was successfully uploaded!<br>"; echo "<img src=/phoenix/produtos/" . $upload->file['name'] . ">"; //Esta linha eu adicionei }else{ echo "<br><strong>" . $upload->error_msg . "</strong>"; }}?></body></html>Só que ele só me mostra imagens com o nome curto alguém sabe porque? Citar Link para o comentário Compartilhar em outros sites More sharing options...
0 FONSENIX Postado Janeiro 31, 2005 Denunciar Share Postado Janeiro 31, 2005 Caros amigos do SB,eu estou usando uma código para enviar imagens para o servidor .Ele funciona direitinho mas eu gostaria de ver a imagem depois de enviada num Iframe então adicionei uma linha:<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"><html><head> <link rel="stylesheet" href="adm_style.css" type="text/css"> <title>Picture Upload</title></head><body><?phprequire("class.upload.php");$input_field_name = "picturefile";$accepted_mime_types = array('image/jpg', 'image/jpeg', 'image/gif', 'image/png', 'image/pjpeg');$destination_folder = "C:\Arquivos de programas\EasyPHP1-7\www\phoenix\produtos/";$overwrite = false; //Overwrite the file if it exists$upload = new upload($input_field_name);/** * The following three lines are optional. * They set some upload-limits. */$upload->set_max_file_size(153604);$upload->set_max_image_size(640, 480); //in pixels$upload->set_accepted_mime_types($accepted_mime_types);$upload->draw_simple_form('Upload pictures', 'upload-example.php'); //the second argument is optionalif ($_SERVER['REQUEST_METHOD'] == 'POST'){ $result = $upload->move($destination_folder, $overwrite); if ($result == true){ echo "<br>" . $upload->file['name'] . " was successfully uploaded!<br>"; echo "<img src=/phoenix/produtos/" . $upload->file['name'] . ">"; //Esta linha eu adicionei }else{ echo "<br><strong>" . $upload->error_msg . "</strong>"; }}?></body></html>Só que ele só me mostra imagens com o nome curto alguém sabe porque? Cadastro feito FONSENIX Citar Link para o comentário Compartilhar em outros sites More sharing options...
Pergunta
Guest FONSENIX
Caros amigos do SB,
eu estou usando uma código para enviar imagens para o servidor .Ele funciona direitinho mas eu gostaria de ver a imagem depois de enviada num Iframe então adicionei uma linha:
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html>
<head>
<link rel="stylesheet" href="adm_style.css" type="text/css">
<title>Picture Upload</title>
</head>
<body>
<?php
require("class.upload.php");
$input_field_name = "picturefile";
$accepted_mime_types = array('image/jpg', 'image/jpeg', 'image/gif', 'image/png', 'image/pjpeg');
$destination_folder = "C:\Arquivos de programas\EasyPHP1-7\www\phoenix\produtos/";
$overwrite = false; //Overwrite the file if it exists
$upload = new upload($input_field_name);
/**
* The following three lines are optional.
* They set some upload-limits.
*/
$upload->set_max_file_size(153604);
$upload->set_max_image_size(640, 480); //in pixels
$upload->set_accepted_mime_types($accepted_mime_types);
$upload->draw_simple_form('Upload pictures', 'upload-example.php'); //the second argument is optional
if ($_SERVER['REQUEST_METHOD'] == 'POST'){
$result = $upload->move($destination_folder, $overwrite);
if ($result == true){
echo "<br>" . $upload->file['name'] . " was successfully uploaded!<br>";
echo "<img src=/phoenix/produtos/" . $upload->file['name'] . ">"; //Esta linha eu adicionei
}else{
echo "<br><strong>" . $upload->error_msg . "</strong>";
}
}
?>
</body>
</html>
Só que ele só me mostra imagens com o nome curto alguém sabe porque?
Link para o comentário
Compartilhar em outros sites
1 resposta a esta questão
Posts Recomendados
Participe da discussão
Você pode postar agora e se registrar depois. Se você já tem uma conta, acesse agora para postar com sua conta.