View Full Version : I need to know a script but dont know the name of it.
feartherunites
10-28-2003, 12:45 PM
I need to find a script that hides the url in the address bar a desguises each page into the home page url. If you dont know what i mean try visiting www.worldgb.com. If you can give me infomation on were to find this script or have it stored on your pc somewere then please tell me.
softwaresubmit
10-28-2003, 01:00 PM
As far as I can tell, this site uses frames. This is a popular way to implement URL cloaking.
feartherunites
10-28-2003, 11:38 PM
Um could you please help me design this please please please
carbonize
10-29-2003, 12:40 AM
If you ever wonder how a website does something just lok at the code. The code from your example site is
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">
<html>
<head>
<title>Worldgb.com</title>
<link REL="SHORTCUT ICON" HREF="gbcpoke.ico">
</head>
<frameset cols="3%,*" frameborder="0">
<frame src="menu.htm" name="menu" id="menu" frameborder="0" scrolling="No" noresize marginwidth="0" marginheight="0">
<frame name="corpo" src="corpo.htm" marginwidth="10" marginheight="10" scrolling="auto" frameborder="0" noresize>
</frameset>
</body>
</html>
si terender
10-29-2003, 07:27 AM
Some sites use div tags to accomblish the same effect as frames. The danger here is that the hidden div tags and there respective contents load with the initial page. If you have a lot of content, graphics on the hidden divs, your page load times can drastically increase.