yup i know that,
even with using a normal link i cant get it to work.
e.g.
<?php
//top of page
$author=$_GET['author'];
?>
<?php
echo "<a href=\"userprofile.php\">$author</a>";
?>
im trying to send $author (just gets author's name from database) to (userprofile.php):
<?php
$author=$_GET['author'];
?>
<?php
echo $author;
?>