Mysql
 sql >> Database >  >> RDS >> Mysql

Stampa di una tabella in orizzontale anziché in verticale usando PHP

Scorri i risultati della tua query prima costruendo le due righe che desideri e poi aggiungile alla tabella in seguito:

$kriterium = '';
$betyg = '';

while ($row = mysql_fetch_assoc($result))
{
    $kriterium .= '<td>'.$i.'</td>';
    $betyg .= '<td>'.$row['RID'].'</td>';
    $i++;
}

echo '
    <table class="table table-condensed table-bordered neutralize">     
        <tbody>
            <tr>
                <td><b>Kriterium</td>'.$kriterium .'
            </tr>
            <tr>
                <td><b>Betyg</td>'.$betyg .'
            </tr>
        </tbody>
    </table>
';