• Howdy! Welcome to our community of more than 130.000 members devoted to web hosting. This is a great place to get special offers from web hosts and post your own requests or ads. To start posting sign up here. Cheers! /Peo, FreeWebSpace.net
managed wordpress hosting

Help me .. output of script on calling html page ??

prem

New Member
Hi
I want to call a script from an html page
<html>
...
..
<http://www.someotherwebsite.com/script-name>
..
</html>

and I want the script to be called and the output of the script ( some text ) to be displayed in place of the script on the html page . The calling html page will not be resting on my server. That is, say I add a footer/signature to my html email <http://www.xyz.com/script-name> I want the script name to be replaced by the output of the script.

How do I do it .. can I do it with perl or javascript .. please tell me as detailed as possible ..
Thanks and regards
Deb
 
Javascript is DEFINITELY going to be easier. I haven't got much experiance with that, BUT for perl, you could manipulate an image Library so that it outputed the text as a gif image.

From there you could then have the information within the email.
 
<html>
:
:
<SCRIPT LANGUAGE="javascript" src="http://www.domain.com/script.inc">
</SCRIPT>
:
:
</html>
 
Back
Top