At the moment it is working - you can add posts properly.
However I want the name of the poster to become a link to a page with info about them, and would like to reference the users by ID, rather than name if possible.
I loop through the posts with a while statement:
Code: Select all
while ($myrow = mysql_fetch_array( $threadresult ))
{
printf("<tr><td>%s</td><td>Posted by: %s</td></tr><tr><td colspan="2">%s</td></tr>\n", $myrowї"post_no"], $myrowї"poster"], $myrowї"message"]);
}How can I get it so that instead of the name of the poster, there will be a link to the info page, referenced by the id of the poster?
Is this possible? or should I just the the name of the poster?