OK....I hope I'm not going crazy...
ok...I'm trying to write a php page that involves passing parameters to itself within the URL (ex: "this.php?that=2"). Now, I've written a bunch of programs before doing this, and I remember them working, but now, it's not. So I wrote a quick test...
<html>
<body>
<?php
global $this;
print "this equals: $this<BR>";
$this = 1;
print "this equals: $this<BR><BR><BR>";
?>
<a href="test.php?this=2">test</a>
</body>
</html>
Now, when I click on "test", it shouldn't it display
this equals: 2
this equals: 1
?? Cuz it's not....the first "this equals" turns up empty. I'm going crazy....but I think I'm missing something really stoopid here....so please save me a bullet to the head.
Thanks!


)