As you all know I've been away for quite some time now, but good news, starting from february 16. I'm getting an internet connection again.
Anyway Just noticed one request from #codenewbie@freenode.net since apparently my user is the only one idling there, I might aswell bring it here:
Quote:
< lobas> redhead
< lobas> <html>
< lobas> <head>
< lobas> </HEAD>
< lobas> <meta http-equiv="refresh" content="0; url=<?php $HTTP_REFERER?>">
< lobas> </body>
< lobas> </html>
< lobas> why dont that work
|
And the answer is, you have to somehow serve the contense which is hold in HTTP_REFERER to the browser, usualy this is either done by using
print() or by using
echo, so in your case it would be:
HTML Code:
<html>
<head>
<meta http-equiv="refresh" content="0; url=<?php echo $HTTP_REFERER; ?>">
</HEAD>
<body>
</body>
</html>
Thanks for listening all, and please shower this poor lobas with all the solutions you can come up with
