How-to ???

wxdqz

New Member
Hi !!!

I'm trying to extract data from mysql db thus:

#Solicitando dados da Tabela.
$result = mysql_query("select * from $tabela");
while($row = mysql_fetch_array($result)) {
#Assign rows to variables.
$ID = $row["ID"];
$Categoria = $row["Categoria"];
$Nome = $row["Nome"];
$Texto = $row["Texto"];
$Imagem = $row["Imagem"];
}

I have multiple data in db, then what can I do to list all rows using this unique variables($ID,$Categoria,$nome,$Texto,$Imagem) in other page ???

Any ideas???

Regards,


marcoBR
 
Back
Top