Jump to content
Fórum Script Brasil
  • 0

Mostrar busca aleatória sem repeti-las


Heltinhu

Question

Bem galera vou tentar ser bem sucinto...

Estou montando um sisteminha para minha imobiliária onde o SCRIP faz a consulta em meu banco de dados e mostra os resultados dentro de uma tabela na minha página index.php vamos a ele...

ESTE SCRIPT PEGA OS RESULTADOS NO MEU BANCO DE DADOS eu o chamo de exibir_imovel.PHP

<?php

//conecta e seleciona banco
$conexao=@mysql_connect("localhost", "root", "") or die("erro no MySQL:<br/>" . mysql_errno());
$db=@mysql_select_db("CLASSIFICADOS", $conexao) or die("Erro no MySQL:<br/>" . mysql_errno());

$codigo = $_GET['id'];
$sql = mysql_query("SELECT * FROM `IMOVEIS` Order by rand() limit 10");
$row  = mysql_fetch_array($sql);
echo $row["$codigo"];

//VARIAVEIS QUE BUSCA OS RESULTADOS
$codigo = $row["codigo"];
$foto = $row["foto"];  
$cidade = $row["cidade"];
$bairro = $row["bairro"];
$endereço = $row["endereço"];

echo "
    <a href='detalhes_imovel.php?id=$codigo'>
$endereço
<img src='admin/fotos/imovel/$foto' width='170' height='120' align='left' title='$bairro'></a>";
?>
AGORA ESTA TABELA ESTA DENTRO DA MINHA PÁGINA INDEX.PHP EU CHAMO O MEU ARQUIVO exibir_imovel.php
<table width="auto" border="0" cellspacing="0" cellpadding="10">
<tr align="center" valign="middle">
    <td><?PHP include "exibir_imovel.php"; ?></td>
    <td><?PHP include "exibir_imovel.php"; ?></td>
    <td><?PHP include "exibir_imovel.php"; ?></td>
</tr>

<tr align="center" valign="middle">
    <td><?PHP include "exibir_imovel.php"; ?></td>
    <td><?PHP include "exibir_imovel.php"; ?></td>
    <td><?PHP include "exibir_imovel.php"; ?></td>
</tr>
</table>

Bom os resultados estão sendo mostrados aleatoriamente isso esta como eu queria o problema é alguns imóveis se repetem até umas 3 vezes.

Como resolvo isso fazendo-o parar de repetir os imóveis.

Edited by Heltinhu
Link to comment
Share on other sites

0 answers to this question

Recommended Posts

There have been no answers to this question yet

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...