Beefy Boxes and Bandwidth Generously Provided by pair Networks
Keep It Simple, Stupid
 
PerlMonks  

Re: CGI.pm idiosyncrasy?

by Trimbach (Curate)
on May 30, 2001 at 07:56 UTC ( [id://84164]=note: print w/replies, xml ) Need Help??


in reply to CGI.pm idiosyncrasy?

The "base" and "vlink" tags both belong in the "start_html" method when you're using CGI.pm. There is no "body" function per se in CGI.pm, so by typing it the module is assuming you know what you're doing and pretends it's a valid tag. Your "body" function doesn't "enclose" anything, so CGI.pm makes the perfectly valid guess that "body" is a self-closing tag like "break " and puts the closing slash within the tag per XHTML 1.0 guidelines. You're getting similar problems with "base" which should also be an attribute of start_html, and not it's own function/method.

Try this instead: (untested)

print header, start_html (-title => 'Welcome to 0.0.0.0!', Link ({-rel => 'stylesheet', type => 'text/css', href => + 'style.css'}), base => 'http://0.0.0.0/cgi-bin/dir/', vlink => "Black");
For more info check out the "start_html" docs in the CGI.pm POD.

Gary Blackburn
Trained Killer

Log In?
Username:
Password:

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

How do I use this?Last hourOther CB clients
Other Users?
Others exploiting the Monastery: (8)
As of 2024-04-18 14:25 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found