Skip to content
WJunction - Webmaster Forum

Looking for script to batch create iframe sites

Status
Not open for further replies.
I'm looking for a script that allows me to insert a bulk of urls and it will auto create links with the site inside an iframe. I guess it's sort of like a shortener url script except I'm hiding the destination url in the address bar. Anyone have this?
 
Last edited:

5 comments

It looks to me very easy to build such a script. It's about 15 minutes of PHP work. You need a database where to store the link - website relation and a frontend where you can add your URLs to the database (you can use phpmyadmin too). The link script should only read the parameter from URL and search it in the database, adding the real URL to the iframe tag.
 
It looks to me very easy to build such a script. It's about 15 minutes of PHP work. You need a database where to store the link - website relation and a frontend where you can add your URLs to the database (you can use phpmyadmin too). The link script should only read the parameter from URL and search it in the database, adding the real URL to the iframe tag.

but I'm not a coder...
 
if it's multiple links you can easily use notepad for rename:

example: http://www.wjunction.com/16-webmast...looking-script-batch-create-iframe-sites.html

replace: http://www.wjunction.com with <iframe src="http://www.wjunction.com

and: .html with .html" scrolling="no" frameborder="0" width="500" height="800" allowfullscreen="true"></iframe>


or find some regex replace app. there should is free apps available online.


search for: (.*?\([/]+\)).+
replace with: <iframe src="$0" scrolling="no" frameborder="0" width="500" height="800" allowfullscreen="true"></iframe>
 
Status
Not open for further replies.

About the author

R
Active Member · Joined
815
Messages
46
Reactions
28
Points

Advertise on WJunction

Reach 1000's of webmasters, hosts & affiliates. Banner & sponsored-thread slots available.

Contact us
Back
Top Bottom