Beefy Boxes and Bandwidth Generously Provided by pair Networks
Think about Loose Coupling
 
PerlMonks  

Re: Re: How do I send information to Javascript from perl?

by Parham (Friar)
on Jan 01, 2002 at 03:37 UTC ( [id://135455]=note: print w/replies, xml ) Need Help??


in reply to Re: How do I send information to Javascript from perl?
in thread How do I send information to Javascript from perl?

one approach would be to redirect to an html file with a query string after you've done all your processing in your perl such as:
$username = 'username'; print "Location: html.html?username=$username\n\n";
from there, you can simply grab the variable on the html using this:
<script language="JavaScript"><!-- if (location.search.length > 0) eval('var ' + location.search.substring(1)); //--></script>

Log In?
Username:
Password:

What's my password?
Create A New User
Domain Nodelet?
Node Status?
node history
Node Type: note [id://135455]
help
Chatterbox?
and the web crawler heard nothing...

How do I use this?Last hourOther CB clients
Other Users?
Others cooling their heels in the Monastery: (3)
As of 2024-04-26 03:08 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found