Does anyone know how I can convert all my rapidshare links to have a top frame banner like usercash. For example http://6002456932328.usercash.com/
Hello, This is simple. Just simply use the <iframe> tags within HTML. Here is the source code from your example. Take it, modify it and use it. <HTML> <head> <TITLE>http://www.rapidshare.com</TITLE> </head> <SCRIPT language="JavaScript" type="text/javascript"> if (top.location != document.location && top.location != self.location) { top.location.href = 'http://6002456932328.usercash.com/?breakout=1'; } </SCRIPT> <NOFRAMES> <body> <br><br><center> <a href="http://www.rapidshare.com">Please click here</a> to visit http://www.rapidshare.com</center> <script src="http://www.google-analytics.com/urchin.js" type="text/javascript"> </script> <script type="text/javascript"> _uacct = "UA-246641-1"; urchinTracker(); </script> </body> </NOFRAMES> <frameset rows="60,*" border="0" frameborder="0" framespacing="0"> <frame src="1_top.php?breakout=&ref=&uid=30078" scrolling="no"> <frame src="http://www.rapidshare.com"> </frameset> </HTML> Code (markup): Hope that helps