0
I need to add the data from array
in a table HTML, remembering that it should be 3 arrays and only HTML and PHP for requirements of the teacher. is attached an assembly of how it should be.
follows my code:
<?php
$vetor1 = array("GT 1030 DDR4", "GT 1030 GDDR5", "GTX 750", "GTX 750 TI", "GTX 1050 TI", "GTX 1050");
$vetor2 = array(400, 350, 600, 500, 1000, 800);
$vetor2 = array("péssima", "regular", "boa", "muito boa", "ótima", "aceitável");
echo "<table>";
?>
<table>
<tr>
<th>GPU</th>
<th>preço</th>
<th>qualidade</th>
</tr>
Your question this very vague, I advise you improve it with examples of what you expect as a result, based on data provided.
– Clayton Tosatti