Beefy Boxes and Bandwidth Generously Provided by pair Networks
good chemistry is complicated,
and a little bit messy -LW
 
PerlMonks  

Re: CGI + netscape problems

by Gilimanjaro (Hermit)
on Jan 29, 2003 at 17:16 UTC ( [id://231020]=note: print w/replies, xml ) Need Help??


in reply to CGI + netscape problems

What does $image contain? I remember once having problems because netscape refuses (justly) to convert backslashes to slashes in an url...

Try inserting:

$images=~s/\\/\/g;

before the print line... That should convert any backslashes to forward slashes.

"Oy! What's that between my teeth?! Someone get me a toothpick!

Update: added a missing squigly thing thanks to Bilbo++

Replies are listed 'Best First'.
Re: Re: CGI + netscape problems
by Bilbo (Pilgrim) on Jan 30, 2003 at 10:05 UTC

    That should probably be

    $image =~ s/\\/\//g;

    (=~ rather than =, and you were missing a /)

Log In?
Username:
Password:

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

How do I use this?Last hourOther CB clients
Other Users?
Others contemplating the Monastery: (3)
As of 2024-04-24 05:27 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found