Hello...
I have a PHP page with the following redirect.
header("Location: my_page.php?id=$_REQUEST[id]");
This work great..... however, I want to have the page load up at a specifc spot. With a html link I would use: (after I put a <a name='here'></a> in the page)
my_page.html#here
However, when I use my_page.php#here?id=$_REQUEST[id].... I get an error.
How is the best way to handle this?
Thanks,
-dr