Andryon PHProgrammer Posted October 6, 2011 Report Share Posted October 6, 2011 Pessoal,ao exportar um relatório com uma imagem, a imagem aparece quebrada, segue o código:"<table> <tr> <td><img src='http://meusite/_interfaces/_clientes/f.jpg'/></td> <td></td> </tr> </table>"e seu deixar apenas:"<table> <tr> <td><img src='_clientes/f.jpg'/></td> <td></td> </tr> </table>"também não aparece nada.Para gravar o arquivo estou fazendo o seguinte: // Crio o xls // if (!$handle = fopen($filename, 'w+')) { echo "Cannot open file ($filename)"; exit; } if (fwrite($handle, $conteudo) === FALSE) { echo "Não foi possível escrever no arquivo ($filename)"; exit; } fclose($handle);alguém sabe como resolver isso? Quote Link to comment Share on other sites More sharing options...
0 Willian Gustavo Veiga Posted October 7, 2011 Report Share Posted October 7, 2011 A URL da imagem está errada.Um abraço. Quote Link to comment Share on other sites More sharing options...
Question
Andryon PHProgrammer
Pessoal,
ao exportar um relatório com uma imagem, a imagem aparece quebrada, segue o código:
"<table>
<tr>
<td><img src='http://meusite/_interfaces/_clientes/f.jpg'/></td>
<td></td>
</tr>
</table>"
e seu deixar apenas:
"<table>
<tr>
<td><img src='_clientes/f.jpg'/></td>
<td></td>
</tr>
</table>"
também não aparece nada.
Para gravar o arquivo estou fazendo o seguinte:
// Crio o xls //
if (!$handle = fopen($filename, 'w+')) {
echo "Cannot open file ($filename)";
exit;
}
if (fwrite($handle, $conteudo) === FALSE) {
echo "Não foi possível escrever no arquivo ($filename)";
exit;
}
fclose($handle);
alguém sabe como resolver isso?
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.