Re: URL Var's not working.
Posted by:
k776
(---.bliink.ihug.co.nz)
Date: June 07, 2006 05:53AM
Thats because your ISP has register_globals on, not very smart of them I might add. Changing $PageContent to $_GET['PageContent'] and any others like it will fix the problem
Also, <? is turned off by default I think. Therefore you need to use <?php instead. All these are good coding practices.