Jump to content
Fórum Script Brasil
  • 0

Busca com paginação


Diego SCarvalho

Question

Pessoal estou utilizando o código abaixo para imprimir uma consulta realizada no banco de dados, mas preciso que seja feita uma paginação para que não passe de 10 resultados exibidos.

Não sei por onde começar, já consegui limitar a busca mas não sei como criar os links para ver o resto da consulta.

<?php
    include 'functions.php';
    
    $busca = findPaciente($_REQUEST);
    
    if ($busca != NULL){
            echo     '
                    <table width="900" border="1" cellspacing="2" align="center">
                    <tr>
                    <th colspan="6" scope="col"><strong>PACIENTES </strong></th>
                    </tr>
                    <tr>
                        <th width="5">Alt/Del</th>
                        <th width="40">Código</th>
                        <th width="120">Nome</th>
                        <th width="120">Endereço</th>
                        <th width="60">Telefone</th>
                    </tr>';
    
        if(is_array($busca) && $busca != null){

        foreach($busca as $values){
                    echo "<tr>
                        <td class='rel'>
                            <input type='radio'  id='chk' name='id[]' value='{$values["id"]}' />
                        </td>
                        <td>{$values["id"]}</td>
                        <td>{$values["nome"]}</td>
                        <td>{$values["end"]}</td>
                        <td>{$values["tel"]}</td>
                    </tr>";
        }
    }
    }
    else{
        echo "Banco de Dados Vazio";
    }
    echo "</table>";
?>

alguém pode me dar alguma dica? Obrigado.

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