0
Hello, I need to make a table like the one in the image but using this array:
$teste = array();
$teste[0]['produtos']['nome'] = "Produto 1";
$teste[0]['produtos']['descricao'] = "Descrição do produto 1";
$teste[0]['produtos']['valor'] = 50;
$teste[0]['produtos']['opcionais'][] = "Opcional 1";
$teste[0]['produtos']['opcionais'][] = "Opcional 2";
$teste[0]['produtos']['opcionais'][] = "Opcional 3";
$teste[1]['produtos']['nome'] = "Produto 2";
$teste[1]['produtos']['descricao'] = "Descrição do produto 2";
$teste[1]['produtos']['valor'] = 75;
$teste[1]['produtos']['opcionais'][] = "Opcional 1";
$teste[1]['produtos']['opcionais'][] = "Opcional 2";
$teste[1]['produtos']['opcionais'][] = "Opcional 3";
$teste[1]['produtos']['opcionais'][] = "Opcional 4";
$teste[2]['produtos']['nome'] = "Produto 3";
$teste[2]['produtos']['descricao'] = "Descrição do produto 3";
$teste[2]['produtos']['valor'] = 100;
$teste[2]['produtos']['opcionais'][] = "Opcional 1";
$teste[2]['produtos']['opcionais'][] = "Opcional 2";
Does anyone have any idea how I can do this? I’m trying to use the foreach
, but the concept is still new to me and I’m having a hard time understanding.
And after doing this I still have to mount the same table, but reversing the sorting using a PHP sorting function.
To mount the table by inverting the sort use the function to Array arsort
– NoobSaibot