hi Im using this code to make list of a mysql table
=======================================================
<?php
$getnews = mysql_query("select * from tblZ_Test ORDER BY id DESC ");
while($r=mysql_fetch_array( $getnews)){
extract($r);
echo '<a href = "
}
?>
=========================================================
Ok so what i have done obviously is created a list of links each one having the title field from my table as the text. on the table there are 6 fields eg $id , $description
$name , $date ect , now how do I make it so that these coresponding fields are avaliable for use on the return.php page. Imagine this is the main page I have already made the connection to the table and made the variables avaliable.To now simply be able to echo the related fields from return.php depending on which title link I click on ,I shouldnt have to reconect to the table should I.I have some trouble getting my head around being able to be specific about which $id I can display
If some one could make a small example it would be of great help to me .
Thanks again
=======================================================
<?php
$getnews = mysql_query("select * from tblZ_Test ORDER BY id DESC ");
while($r=mysql_fetch_array( $getnews)){
extract($r);
echo '<a href = "
}
?>
=========================================================
Ok so what i have done obviously is created a list of links each one having the title field from my table as the text. on the table there are 6 fields eg $id , $description
$name , $date ect , now how do I make it so that these coresponding fields are avaliable for use on the return.php page. Imagine this is the main page I have already made the connection to the table and made the variables avaliable.To now simply be able to echo the related fields from return.php depending on which title link I click on ,I shouldnt have to reconect to the table should I.I have some trouble getting my head around being able to be specific about which $id I can display
If some one could make a small example it would be of great help to me .
Thanks again