I have the data to show as it is 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 is 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. Well I will have iumeros Id's and leave everything on the same page is too long
Lighter?