Gossamer Forum
Home : General : Perl Programming :

print Location: in a new window

Quote Reply
print Location: in a new window
Hey guys!

Is there a way to open

Code:
print "Location: $url\n\n"

in a new window?
Like in this link example:

Code:
<a target="_new" href="$url">$url</a>

the target="_new" does the job.

Is it something like:

Code:
print "Location target=\"_new\": $url\n\n"

Thank you in advance. Smile


Pasha

------------------
webmaster@find.virtualave.net
http://find.virtualave.net
Quote Reply
Re: print Location: in a new window In reply to
Hi Pasha,

You can't spawn a window with Perl, but there might be a way of doing what you want to do. Can you give a more detail on exactly what you want to do? I mean the circumstances leading up to to where you want to do this?

adam