Hello Mike,
I connect to the database and i use eventely the following in a one of my scripts:
<?
printf("<font face='Verdana, Arial, Helvetica, sans-serif'><font size='-2'><a STYLE='text-decoration: none' href=\"frames.php3?Card_ID=%s&Cat_ID=$Cat_ID&User_ID=$User_ID\" target='_top'>%s</a>", $row["Card_ID"],$row["Description"]);
?>
Near the href you see the script frames.php3 in the link. So when you click on the link, the variables must go to the other scripts which i call in the frames.php3.
The frames.php3 looks like this:
<?
echo "<frameset cols='160,,165' frameborder='NO' border='0' framespacing='0' rows=''>
<frame name='leftFrame' scrolling='NO' noresize src='cat.php3'>
<frame name='mainFrame' src='cards.php3'>
<frame name='rightFrame' scrolling='NO' noresize src='post.php3'>
</frameset>
<noframes><body bgcolor='#FFFFFF'>
</body></noframes>";
?>
I want to parse the variables which i want to use in the cat.php3, cards.php3 and post.php3.
Is that possible? Can you help me further?
I hope that you understand what i trying to say!!
Tx Bart