Jump to content
Fórum Script Brasil
  • 0

Manejo de consulta


Mário Filho

Question

6 answers to this question

Recommended Posts

  • 0

Bom dia.

Vê se seria isso que você quer

$iMaximoPorLinha = 50;

$iTotalReg = 210;

$sHtml = "<table border='1' width='100%'>";

$sHtml .= '<tr>';

for($i = 1; $i <= $iTotalReg; $i ++) {

if ($i % $iMaximoPorLinha == 0) {

$sHtml .= "<td>{$i}</td>";

$sHtml .= '</tr>';

} else {

$sHtml .= "<td>{$i}</td>";

}

}

$sHtml .= '</table>';

echo $sHtml;

Link to comment
Share on other sites

  • 0
Bom dia.

Vê se seria isso que você quer

$iMaximoPorLinha = 50;

$iTotalReg = 210;

$sHtml = "<table border='1' width='100%'>";

$sHtml .= '<tr>';

for($i = 1; $i <= $iTotalReg; $i ++) {

if ($i % $iMaximoPorLinha == 0) {

$sHtml .= "<td>{$i}</td>";

$sHtml .= '</tr>';

} else {

$sHtml .= "<td>{$i}</td>";

}

}

$sHtml .= '</table>';

echo $sHtml;

Tenko é quase isso que eu quero mas esse código seu está conseguindo delimitar quantos registros por coluna.... o que eu não to dando conta é delimitar quando os resultados chegarem a 30 linhas (tr) ele abra outra coluna (td)...

Link to comment
Share on other sites

  • 0
Tenko é quase isso que eu quero mas esse código seu está conseguindo delimitar quantos registros por coluna.... o que eu não to dando conta é delimitar quando os resultados chegarem a 30 linhas (tr) ele abra outra coluna (td)...

Coloca um contador no laço para que quando chegue aos 30, dê um echo no HTML que termina a tabela e que começa uma nova. Então, zere o contador.

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