Jump to content

Ideas on how to go about keeping a list of threads people have posted in


liam1412

Recommended Posts

Try something like this:

[code]$query = mysql_query("SELECT * FROM topics WHERE author = $userid");

while($row=mysql_fetch_array($query)){

$thread = $row['thread'];

echo "$thread <br>";

}[/code]

This is just a general example with no real details of your project or databse structure so just build on it for what you need.

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.