Hello,
I need help with a simple print problem...
Im trying to use perl to print some HTML to the browser, so I do this...
print "
HTML stuff and perl variables are here
.
.
.
";
This will work but I have to go through and backslash all of the double quotes in the HTML. There are a lof of double quotes there.
So I was wondering if there was any other way that I can print the entire document without backslashing all the double quotes?
I heard of a print <<EOF, but I dont know if I'm getting the syntax for that correct...
Please help
I need help with a simple print problem...
Im trying to use perl to print some HTML to the browser, so I do this...
print "
HTML stuff and perl variables are here
.
.
.
";
This will work but I have to go through and backslash all of the double quotes in the HTML. There are a lof of double quotes there.
So I was wondering if there was any other way that I can print the entire document without backslashing all the double quotes?
I heard of a print <<EOF, but I dont know if I'm getting the syntax for that correct...
Please help