header ("Content-Description: Gerado por IMÓVELF");
while($row = mysql_fetch_array($result))
{
$sql="select sum(qtd) as qtd,codanuncio,codusu,referencia from visitas,CadImoveis where visitas.codanuncio=CadImoveis.codimovel group by codanuncio order by codanuncio,codusu,referencia";
Pergunta
mdmdeda
Ola! Estou tentando colocar um hiperlink na minha planilha mas não funciona alguém sabe me dizer como resolvo isso? seque o meu codigo
require('conexao.php');
$sql="select sum(qtd),codanuncio from visitas,CadImoveis where visitas.codanuncio=CadImoveis.codimovel";
$result = mysql_query($sql);
header ("Expires: Mon, 26 Jul 1997 05:00:00 GMT");
header ("Last-Modified: " . gmdate("D,d M YH:i:s") . " GMT");
header ("Cache-Control: no-cache, must-revalidate");
header ("Pragma: no-cache");
header ("Content-type: application/x-msexcel");
header ("Content-Disposition: attachment; filename=\"Relatorio.xls\"" );
header ("Content-Description: Gerado por IMÓVELF");
while($row = mysql_fetch_array($result))
{
$sql="select sum(qtd) as qtd,codanuncio,codusu,referencia from visitas,CadImoveis where visitas.codanuncio=CadImoveis.codimovel group by codanuncio order by codanuncio,codusu,referencia";
$result2 = mysql_query($sql);
if($row2 = mysql_fetch_array($result2))
{
$mensagem="Relatório de Visitas";
echo '<table cellpadding="3" cellspacing="3" border="1">
<thead>
<tr>
<th>Referencia</th>
<th>Visitas</th>
<th>Link para o Anúncio</th>
</tr>
</thead>
<tbody>
<tr>
<td>' . $row2['referencia'] . '</td>
<td>' . $row2['qtd'] . '</td>
Aqui preciso colocar o link para que o usuario acesse meu site
<td><a>www.imovelf.com.br/detalhes.php?id=' . $row['codanuncio] . '</a></td>
</tr>
<tr>
<td>Linha 2, Coluna 1</td>
<td>Linha 2, Coluna 2</td>
<td>Linha 2, Coluna 3</td>
</tr>
</tbody>
</table>';
}
}
Editado por mdmdedaLink para o comentário
Compartilhar em outros sites
2 respostass 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.