Jump to content
Fórum Script Brasil
  • 0

(Resolvido) Problema com ativação link


tms.guiri

Question

Boa tarde,

Bom, estou desenvolvendo uma aplicação para uma imobiliaria, então na área administrativa estou com uma tabela dinâmica pegando os dados no banco. Tenho uma tabela cidades onde eu faço o cadastro, edição, ativação/desativação e exclusão da mesma. O problema é o seguinte, não estou entendendo porque quando eu cadastro algumas cidades a função "excluir" aparece o ID , mais em outras não aparece, isso que não estou entendendo, então quando eu cadastro de algumas cidades aparece e em outras não. Vejam o codigo:

Codigo da tabela dinamica:

<table cellpadding="0" cellspacing="0" border="0" class="display" id="example">
    <thead>
        <tr>
            <th><font size="2">Cidades</font></th>

            <th><font size="2">Estado</font></th>
            <th><font size="2">Editar</font></th>
            <th><font size="2">Ativar/Desativar</font></th>
            <th><font size="2">Excluir</font></th>
        </tr>
    </thead>
    <tbody>
     <?
    $sql = mysql_query("SELECT * FROM cidades ORDER BY cidade ASC");
    while($linha = mysql_fetch_array($sql)){
    
    $id_cidade = $linha["id"];
    $uf = $linha["uf"];
    $nome = $linha["cidade"];
    $ativo = $linha["ativo"];
    
    $sql2 = mysql_query("SELECT * FROM imoveis WHERE id='$id_cidade'");
    $ttl_imovel = mysql_num_rows($sql2);
    
    if($ttl_imovel >0){
    $del = "Excluir";
    }else{
    $del = "<a title='excluir' href='cidades_del.php?id=$id_cidade'>Excluir</a>";
    }
    
    if($ativo ==1){
    $ativa = "<a title='Desativar' href='cidades_ativa.php?id=$id_cidade&acao=desativar'>Desativar</a>";
    }else{
    $ativa = "<a title='Ativar' href='cidades_ativa.php?id=$id_cidade&acao=ativar'>Ativar</a>";
    }
    
        echo '    
<tr class="odd gradeX">
            <td><font size="2">'.$nome.'</font></td>
            <td><font size="2"><center>'.$uf.'</center></font></td>
            <td class="center"><a title="Editar" href="cidades_edit.php?id='.$id_cidade.'"><font size="2">Editar</font></a></td>
            <td class="center"><font size="2">'.$ativa.'</font></td>
            <td class="center"><font size="2">'.$del.'</font></td>

        </tr>';
    }
    ?>
    
    </tbody>
    <tfoot>
        <tr>
            <th><font size="2">Cidades</font></th>
            <th><font size="2">Estado</font></th>
            <th><font size="2">Editar</font></th>
            <th><font size="2">Ativar/Desativar</font></th>
            <th><font size="2">Excluir</font></th>
        </tr>
    </tfoot>
</table>

Alguém poderia me ajudar? Agradeço desde já e aguardo resposta

Edited by tms.guiri
Link to comment
Share on other sites

3 answers to this question

Recommended Posts

  • 0

Você criou o script e não entende a lógica que aplicou nele?

$sql2 = mysql_query("SELECT * FROM imoveis WHERE id='$id_cidade'");
    $ttl_imovel = mysql_num_rows($sql2);
    
    if($ttl_imovel >0){
    $del = "Excluir";
    }else{
    $del = "<a title='excluir' href='cidades_del.php?id=$id_cidade'>Excluir</a>";
    }

Se a cidade tiver imóveis cadastrados não aparece o link para excluir, caso contrário aparece.

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
      652.1k
×
×
  • Create New...