0
i have the data to be shown so currently.
echo "<table>";
echo "<tr><td>Nome:</td>";
echo "<td>".$exibe["Nome"]."</td></tr>";
echo "<tr><td>Morada:</td>"; echo "<td>";
if ($exibe['Morada']){ echo $exibe['Morada'];}else{echo 'N/D';} echo "</td></tr>";
echo "<tr><td>Tipo:</td>";echo"<td>";
if($exibe['Tipo']){ echo $exibe['Tipo'];}else{echo 'N/D';} echo "</td></tr>";
echo "<tr><td>Email:</td>"; echo "<td>";
if($exibe['Email']){ echo $exibe['Email'];}else{echo 'N/D';} echo "</td></tr>";
Currently the data are shown all on the same page in table form ie:
id - 1
Nome[1] - Jorge
Morada[1] - Rua do Sol
Email[1] - [email protected]
id - 2
Nome[2] - Pedro
Morada[2] - Rua da agua
Email[2] - [email protected]
I want to change this for each id to appear in a different folder or window. 'Cause I’m gonna have thousands of Ids and if I leave everything on the same page it’s too long
Brighter?
I don’t understand, this Id would be
$exibe['Id']
?– Rodrigo Rigotti
Each "Topic" would store the information of each ID that was inserted. Topico1 = Id1 Topico2 = Id2 ....
– ChrisAdler
You don’t understand the question. Is it about the structure of HTML? About how to get the Id in php? You can edit the question to make it clearer?
– bfavaretto
Each table would be a topic?
– lionbtt
Remember to choose the best answer. You ask a lot of questions and those who answer like to get feedback as well. Hug.
– thiagobarradas