Jump to content
Fórum Script Brasil
  • 0

Problema Com Busca Randonica


Henrique Flausino

Question

Boa tarde.

Estou com um problema em uma busca dinamica entre duas tabelas.

Preciso que seja mostrado resultados dinamicos e que alterem a cada atualização da página e a cada acesso.

abaixo o código funciona normalmente, porém preciso que seja mostrado apenas a cidade, que esta em uma tabela separada.

Se colocar o endereço aparece corretamente, porém a cidade está alternando com o estado.

Segue código.

<?php
{
require ( "includes/config.php" );
require ( "includes/CGI.php" );
require ( "includes/SQL.php" );
  
  $cgi = new CGI ();
  $sql = new SQL ( $DBusername, $DBpassword, $server, $database );

  if ( ! $sql->isConnected () )
  {
    die ( $DatabaseError );
  }
   require ( "includes/CSQL.php" ); 
  $rows = $sql->execute ( "SELECT * FROM $property_table, $cidade_table WHERE propertyshow = '1' ORDER BY RAND() LIMIT 1",
  SQL_RETURN_ASSOC );
  $row = $rows [ 0 ];
 {
 print "<p><a href=\"index.php?op=mi&id=$row[id]\">";
 if ($row [ 'propertyphoto1' ] ){ print "<IMG SRC=\"".$ImageURL."$row[propertyphoto1]\" BORDER=\"0\" WIDTH=\"$max_thumb_image_width\" HEIGHT=\"$max_thumb_image_height\">";}
 else { print "<IMG SRC=\"".$ImageURL."nopropertyimage.jpg\" BORDER=\"0\" WIDTH=\"$max_thumb_image_width\" HEIGHT=\"$max_thumb_image_height\">";}
 print "</a><br>$row[descricao]
 </p>";
 {
 }
 print "<p><a href=\"index.php?op=mi&id=$row[id]\">";
 if ($row [ 'propertyphoto2' ] ){ print "<IMG SRC=\"".$ImageURL."$row[propertyphoto2]\" BORDER=\"0\" WIDTH=\"$max_thumb_image_width\" HEIGHT=\"$max_thumb_image_height\">";}
 else { print "<IMG SRC=\"".$ImageURL."nopropertyimage.jpg\" BORDER=\"0\" WIDTH=\"$max_thumb_image_width\" HEIGHT=\"$max_thumb_image_height\">";}
 print "</a><br>$row[descricao]</p>";

}
}
    ?>
Estrutura do banco. Banco properties.
id    agentref    propertyoption        propertyref     propertytype     propertyprice     propertybedrooms     propertybathrooms     propertyyearbuilt     propertylivingarea     propertyplotsize     propertyaddress     propertyestado     propertycidade     propertybairro     propertypostcode        propertycountry     shortdescription         longdescription                propertystatus         propertyphoto1                 propertyphoto2     propertyphoto3     propertyphoto4     propertyphoto5     propertyphoto6     propertyphoto7     propertyphoto8     propertyphoto9     propertyphoto10     propertyviews     propertyshow     featuredproperty     virtualtour     propertyowner                         dateadded
30                   S             1002         2           46000        1            2            1890            1300            1400        Av. Sapopemba            4        5        5       03374-000                        Breve descrição do Imóvel     Descrição do Imóvel                2        1002-32-1143225528_offer_27_e.jpg                                                                                                       0         1         N                   Esta informação não é exibida no site. É para sua ...     11/10/2011 14:20
29                   S             1002         2           46000        1            2            1890            1300            1400        Av. Sapopemba            4        5        5       03374-000                        Breve descrição do Imóvel     Descrição do Imóvel                2        1002-32-1143225528_offer_27_e.jpg                                                                                                       0         1         N                   Esta informação não é exibida no site. É para sua ...     11/10/2011 14:20
Banco cidade.
codigo     cod_estado     descricao
  4           5        Rio de Janeiro
  5        4        São Paulo

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.

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