Carlos Rocha Posted January 29, 2005 Report Share Posted January 29, 2005 Ola pessoal!O php tem as seguintes funções:1 - Verifica se o mime-type do arquivo é de imagem if(!eregi("^image\/(pjpeg|jpeg|png|gif|bmp)$", $arquivo["type"])) { $erro[] = "Arquivo em formato inválido! A imagem deve ser jpg, jpeg, bmp, gif ou png. Envie outro arquivo"; }2 - // Faz o upload da imagemmove_uploaded_file($arquivo, $diretorio)e no asp, como seria? Quote Link to comment Share on other sites More sharing options...
0 Developer Posted January 29, 2005 Report Share Posted January 29, 2005 Ola pessoal!O php tem as seguintes funções:1 - Verifica se o mime-type do arquivo é de imagem if(!eregi("^image\/(pjpeg|jpeg|png|gif|bmp)$", $arquivo["type"])) { $erro[] = "Arquivo em formato inválido! A imagem deve ser jpg, jpeg, bmp, gif ou png. Envie outro arquivo"; }2 - // Faz o upload da imagemmove_uploaded_file($arquivo, $diretorio)e no asp, como seria? Depende de qual é o componente, porque cada um é diferente na hora de pegar o request Quote Link to comment Share on other sites More sharing options...
Question
Carlos Rocha
Ola pessoal!
O php tem as seguintes funções:
1 - Verifica se o mime-type do arquivo é de imagem
if(!eregi("^image\/(pjpeg|jpeg|png|gif|bmp)$", $arquivo["type"]))
{
$erro[] = "Arquivo em formato inválido! A imagem deve ser jpg, jpeg,
bmp, gif ou png. Envie outro arquivo";
}
2 - // Faz o upload da imagem
move_uploaded_file($arquivo, $diretorio)
e no asp, como seria?
Link to comment
Share on other sites
1 answer to this question
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.