Hi i wounder if some one can help me with a problem i have....
This is my senario....
I have a forum that i wount to use sessions to make value keys when entering the forum posts....
the problem for me is that im trying to get a value to $topicID to another page and i dont know how to do that!!
This what i wanna register
<?php
$topic_query = mysql_query("SELECT * FROM topics ORDER BY ID") or die (mysql_error());
while ($topic = mysql_fetch_array($topic_query)) {
?>
<TR>
<TD WIDTH=82% BGCOLOR="#FFFFFF" HEIGHT=18 VALIGN=TOP>
<TABLE BORDER=0 CELLSPACING=0 CELLPADDING=5 WIDTH=100%> <TR>
<TD>
P><FONT SIZE="+1" FACE="Trebuchet MS,Arial,Helvetica"><<a href="view.php?topicID=<?php echo $topic['ID'] ?>"><?php echo $topic['TopicName'] ?></a></FONT>
</TD>
</TR>
</TABLE>
</TD>
</TR>
<?php
And i wanna register this session value
$_SESSION["topicID"] = "value of the red marked code";
any ides shoulde help!!
And by the way i have one registerd session when users loggin can that be a problem or can i use the existing session and enter new values??