Thankyou,
<a href=\"rowselect.php?entry=$subject&table=$name\">$subject</a>
//this won't work
Here was the solution:
<a href=\"rowselect.php?table=$name&entry=$subject\">$subject</a>
//this will work
//$name comes from our first script. It's the db table name. As you
said, this should
actually be the table id, but for now it's the table name.
//$subject is for a row from our selected table ($name).
I didn't quite understand what you meant with url encode though. Can you explain?
Regards,
Magnus