What the ..... see? This goes to show you should always proof read your comments. I lost a big chunk of code I thought I had pasted in there.... 🙂
The url is
"<a href="index.phtml?uname=<?php print "$uname"; ?>">"
index is a frameset page and uname is a username from login that has been verified.
Here is the index page (simplified for reading) :
"<frameset>"
"<frame src="header.phtml?uname=<?php print "$uname"; ?>">"
"<frame src="sidebar.phtml?uname=<?php print "$uname"; ?>">"
"<frame src="footer.phtml">"
"</frameset>"
On the header the page should say "Hello $uname" but it doesn't. It says "Hello "
Same thing for the sidebar.