Chico Norris Posted April 10, 2012 Report Share Posted April 10, 2012 Boa Tarde, tenho uma funcao pra mostrar uma imagem qualquer numa pagina em php, so quando executa o arquivo em php so aparece o quadrando onde deveria ficar a imagem, a imagem mesmo fica em branco !!!<?php function imagem ($caminho, $largura, $altura){ echo "<img src='$caminho' width='$largura' height='$altura' />"; } $caminho = $_POST['caminho']; $largura = $_POST['width']; $altura = $_POST['heigth']; imagem($caminho, $largura, $altura); ?> Quote Link to comment Share on other sites More sharing options...
0 Massaki Posted April 10, 2012 Report Share Posted April 10, 2012 (edited) Depure suas variáveis, dê um echo em todas. Veja também se o caminho da imagem é relativo ou absoluto, e tenha certeza que a imagem tem permissão de leitura. Edited April 10, 2012 by Massaki Quote Link to comment Share on other sites More sharing options...
0 JaguA Posted April 11, 2012 Report Share Posted April 11, 2012 como o Massaki disse.. verifique suas variaveis mas principalmente verifique a variavel de caminho pode conter algum erro nela. ou o caminho não esta completo. Quote Link to comment Share on other sites More sharing options...
Question
Chico Norris
Boa Tarde, tenho uma funcao pra mostrar uma imagem qualquer numa pagina em php, so quando executa o arquivo em php so aparece o quadrando onde deveria ficar a imagem, a imagem mesmo fica em branco !!!
Link to comment
Share on other sites
2 answers 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.