Looking for script to batch create iframe sites

Status
Not open for further replies.

Ruriko

Active Member
692
2008
10
315
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.
Back
Top