When you do the variables in a URL, you cant just do
blahblah&id=$id
Do - blahblah&id=".$id."
Example:
PHP Code:
$user =$_GET['user'];
<a href=\"./?p=compose&user=".$user."\">
You need to get the variable before you print it out anywhere, hope that helps a lil bit.. All of it looks fine
|