Suppose there's an arbitrary text file on the web at
http://somedomain.com/original_text.t xt
which contains some text like "This is my original text."
I'd like to have a page (say it's called my_modifier.php ) on my site which accepts a URL as a parameter, and returns a modified version of that text.
So for example, when I browse to my page...
http://www.mydomain.co m/my_modifier.php ?http://somedomain.com/original_text.t xt
... I get a text file returned to me containing "modifiedText = 'This is my original text.' "
Is this possible?
http://somedomain.com/original_text.t xt
which contains some text like "This is my original text."
I'd like to have a page (say it's called my_modifier.php ) on my site which accepts a URL as a parameter, and returns a modified version of that text.
So for example, when I browse to my page...
http://www.mydomain.co m/my_modifier.php ?http://somedomain.com/original_text.t xt
... I get a text file returned to me containing "modifiedText = 'This is my original text.' "
Is this possible?
Comment