Beefy Boxes and Bandwidth Generously Provided by pair Networks
Perl Monk, Perl Meditation
 
PerlMonks  

Re: HTML tags in perl CGI scripts

by rruiz (Monk)
on Nov 14, 2002 at 23:33 UTC ( [id://213043]=note: print w/replies, xml ) Need Help??


in reply to HTML tags in perl CGI scripts

Appart from the comments already made on this question, you may also use q and qq, for example:

print qq{<font face = "courier"> blah blah </font>};

You should use qq if you want the variables on the script to expand, like in:

$name = 'Roberto'; print qq{<font face = "courier"> name = $name </font>};

And q if you don't need variable expansion.

<classical see also> perldoc perlop and search for "Regexp Quote-Like Operators". </classical see also>

God bless you
rruiz

Log In?
Username:
Password:

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

How do I use this?Last hourOther CB clients
Other Users?
Others musing on the Monastery: (5)
As of 2024-03-29 11:55 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found