-1
There is a way to control the id’s of the data coming from the Row[] ?
Example:
Assuming I want him to show me the ID1 data
$Nome = '<p>Nome: '.$row[18].'</p>' ;
$DataNascimento = '<p>Data Nascimento: '.$row[19].'</p>' ;
$Morada = '<p>Morada: '.$row[20].'</p>' ;
$Email = '<p>Email: '.$row[21].'</p>' ;
Sometimes it fetches data from other id’s and I want to know if the way around that. Something like $Row[18]. id
do
print_r
array$row
and put here an example– CIRCLE