result in 2 table columns

1

Good afternoon friends, I'm having a difficult time putting together a table with a result of 2 columns with database information.

<table style='width: 100%;' border='1' cellspacing='0' cellpadding='0'>

<thead>
    <tr style='background-color: #CCCCCC;'>

        <td style='text-align: center; width: 12.5%; height:20px'><h3>Equipamento locado</h3></td>
        <td style='text-align: center; width: 12.5%;'><h3>Patrimônio</h3></td>

    </tr>

</thead>
<tbody> 


if($cliente->equipamento){

    $array_equipamento = explode( "," , $cliente->equipamento ) ;

    foreach ($array_equipamento as $value) {

    $equipamento = $objeto_equipamento->busca_equipamento($value);


    <tr>

        <td style='text-align: center; width: 12,5%; height:20px'>$equipamento->nome</td>
        <td style='text-align: center; width: 12,5%;'>$equipamento->patrimonio</td>

    </tr>

    }

}


</tbody>
</table> 


    <table>

    <tr><td>coluna 1 </td> <td> Coluna 2 </td> </tr> 



    <tr><td> 1 </td> <td> 2 </td></tr>
    <tr><td> 3 </td> <td> 4 </td></tr>
    <tr><td> 5 </td> <td> 6 </td></tr>
    <tr><td> 7 </td> <td> 8 </td></tr>



    </table>

The numbers in the example represent the sequence of results for better understanding.

    
asked by anonymous 30.01.2018 / 20:34

2 answers

0

Good,

Show the structure of the sff table.

I've simulated the tables with utility classes (code below) and the result is as follows. I did not change anything else.

    <?php 

/*
*
* Classes utilitária para simular a estrutura da tabela
*/
class Equipamento{

    public $id;
    public $nome;
    public $patrimonio; 

    public function busca_equipamento($value){

        $testeEquipamentos = self::obterListaDeEquipamenetoTeste();

        foreach($testeEquipamentos as $k => $equipamento){
            if($equipamento->id == $value){
                return $equipamento;
            }
        }

        // um pequeno teste, caso não for encontado o respetivo id/value
        return new  Equipamento();
    }

    public function obterListaDeEquipamenetoTeste(){

        $eq1 = new Equipamento();
        $eq1->id = 1;
        $eq1->nome = "Equipamento 1";
        $eq1->patrimonio = "200€";

        $eq2 = new Equipamento();
        $eq2->id = 2;
        $eq2->nome = "Equipamento 2";
        $eq2->patrimonio = "300€";

        $eq3 = new Equipamento();
        $eq3->id = 3;
        $eq3->nome = "Equipamento 2";
        $eq3->patrimonio = "400€";  

        return [$eq1,$eq2,$eq3];

    }
}

class Cliente{
    public $id;
    public $nome;
    public $equipamento;
}

$cliente = new Cliente();
$cliente->id = '1111';
$cliente->nome = 'Clinet Teste';
$cliente->equipamento = '1,2,3';

?>




    <?php
    /*
    *
    * codigo original => nada alterado
    */
    <table style='width: 100%;' border='1' cellspacing='0' cellpadding='0'>

    <thead>
    <tr style='background-color: #CCCCCC;'>

        <td style='text-align: center; width: 12.5%; height:20px'><h3>Equipamento locado</h3></td>
        <td style='text-align: center; width: 12.5%;'><h3>Patrimônio</h3></td>

    </tr>

    </thead>
    <tbody> 

    <?php



    $objeto_equipamento = new Equipamento();

    if($cliente->equipamento){

        $array_equipamento = explode( "," , $cliente->equipamento ) ;

        foreach ($array_equipamento as $value) {

        $equipamento = $objeto_equipamento->busca_equipamento($value);


        echo "<tr>

            <td style='text-align: center; width: 12,5%; height:20px'>$equipamento->nome</td>
            <td style='text-align: center; width: 12,5%;'>$equipamento->patrimonio</td>

        </tr>";

        }

    }

    ?>

    </tbody>
    </table> 

    
31.01.2018 / 14:14
0

Good afternoon everyone, thanks for the help of all but I have solved my problem ... I followed the source code where I separate the results of the query in two columns independent of the qtd of registries, grateful.

if($cliente->equipamento){

    // quantidade de virgulas faz distinção de numero de registros - 1
    // $reg é uma string separada por ',' na coluna $cliente->equipamento na minha BD, para entendimento de todos
    $reg = substr_count( $cliente->equipamento , ',' ) ; 

    $array_equipamento = explode( "," , $cliente->equipamento ) ;

    $colunas = 2;

    $html .= '<tr>';

    $i = 0;

    foreach ($array_equipamento as $value) 
    {

        $equipamento = $objeto_equipamento->busca_equipamento($value);

        if( $i == $colunas)
        {
            $html .= '</tr><tr>';
            $i=0;
        }

        $html .= '<td>'.$equipamento->nome.'</td>';
        $i++;
    }

    $html .= '</tr>';
}
    
31.01.2018 / 18:52