Jump to content
Fórum Script Brasil
  • 0

Problemas com geração de excel


mdmdeda

Question

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>';

}

}

Edited by mdmdeda
Link to comment
Share on other sites

2 answers to this question

Recommended Posts

  • 0

irmão, tenho um problema q pode ser solucionado com este seu código, você poderia me explicar o que está acontecendo na linha

$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";

este select ta somando dados que vem do banco?????? se puder me ajudar, da uma olhada na minha dúvida?????

https://www.scriptbrasil.com.br/forum/topic/175364-soma-de-dados-mysql/#entry669963

Obrigado

Link to comment
Share on other sites

  • 0

Cara acho que o link que você colocou não vai funcionar mesmo não.

Ao invés de <a>www.imovelf.com.br/detalhes.php?id=' . $row['codanuncio'] . '</a>

tenta <a href="www.imovelf.com.br/detalhes.php?id=' . $row['codanuncio'] . '">LINK</a>"

Link to comment
Share on other sites

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Answer this question...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.



  • Forum Statistics

    • Total Topics
      152.2k
    • Total Posts
      652k
×
×
  • Create New...