Ok I want to get a $row=mysql_fetch_rows($result) and turn $row into a list of links where the name of the lin is ALSO stored so that the next page can access the right database row for sending the info.
i'm not sure if this is what you want to accomplish...
<?php while(list($record_id , $link, $description) = mysql_fetch_row($result)) { $string .= "<a href=\"$link?$record_id\">$description</a><br />"; } ?>
it looks right so i'll give it a try 🙂 thanks