ok now i have another bug lol sos loony if yer reading this post lol
heres whats hapening now
user whos viewd is updated in the forum_latest list
but only shows the one nick
-------------------------------------
Whos Viewd The File
rampage
-------------------------------------
my code is as follows
my tables are
forum_latest
id name pid tid uid
7 rampage 0 30 0
8 test 0 30 0
9 test 0 30 0
10 rampage 0 25 0
now the link to the whosviewed list is
forums.php?mzonez=whosviewed&&tid=$post[0]
it would be nice to get this list to work properly as it will complete the final part of my forums
for file attachments
heres whats hapening now
user whos viewd is updated in the forum_latest list
but only shows the one nick
-------------------------------------
Whos Viewd The File
rampage
-------------------------------------
my code is as follows
PHP Code:
$tid = $_GET["tid"];
echo "Whos Viewd The File<br />";
$dnt = mysql_fetch_array(mysql_query("SELECT name, tid FROM forum_latest WHERE tid='".$tid."'"));
echo "$dnt[0]";
forum_latest
id name pid tid uid
7 rampage 0 30 0
8 test 0 30 0
9 test 0 30 0
10 rampage 0 25 0
now the link to the whosviewed list is
forums.php?mzonez=whosviewed&&tid=$post[0]
it would be nice to get this list to work properly as it will complete the final part of my forums
for file attachments
Comment