RunUO Community

This is a sample guest message. Register a free account today to become a member! Once signed in, you'll be able to participate on this site by adding your own topics and posts, as well as connect with other members through your own private inbox!

PHP: URL Masking; how to?

p4tRi0t3

Wanderer
the easiest way is to use Frames that will call your PHP page

You can use only one frame width = * and height = * and all your anchors target the actual frame.
 

Zippy

Razor Creator
send a Location header, usually the browser keeps displaying the only address in the bar but displays the new page....

Code:
<? header( "Location: the real url" ); ?>
 

TMSTKSBK

Lord
p4tRi0t3 said:
the easiest way is to use Frames that will call your PHP page

You can use only one frame width = * and height = * and all your anchors target the actual frame.

It's easy enough to get the address from a frame...right-click> properties.
 
Top