Fala pessoal, estou com uma grande dúvida, possuo uma table e preciso preencher ela com arrays, cada array possui 48 posições e é referente a uma coluna da table, como posso fazer isso?
$rank = array();
$nome = array();
$funcao = array();
$tag = array();
$trofeus = array();
$level = array();
$doado = array();
$recebido = array();
<table class="table table-striped">
<thead>
<tr>
<th>Rank</th>
<th>Nome</th>
<th>Função</th>
<th>Tag</th>
<th>Troféus</th>
<th>Level</th>
<th>Doado</th>
<th>Recebido</th>
</tr>
</thead>
<tbody>
<tr>
<td>Valor</td>
<td>Valor</td>
<td>Valor</td>
<td>Valor</td>
<td>Valor</td>
<td>Valor</td>
<td>Valor</td>
<td>Valor</td>
</tr>
</tbody>
</table>