
May 19th, 2000, 05:18 AM
|
|
Guest
|
|
Posts: n/a
Time spent in forums:
Reputation Power:
|
|
|
>>a)how can I implement into scripts a template include, as Links does.
option #1:
require "server_path/to/template_file";
option #2:
qq~
<html>
<body>
html codes here
</body>
</html>
~;
option #3:
print "Content-type: text/htmlnn";
print <<HTML_OUTPUT;
<html>
<body>
Hello World!
</body>
</html>
HTML_OUTPUT
b) is there perhaps a software out there which modifies "normal" html..
No.
#############################################
>>I keep on making mistakes with the / and and the print command
If you can't get thru this beginning stage of Perl or you just don't like it, then Perl is not for you.
Yes, you can jump right to my three options above immediately but if you really want to learn, you first need to be patient and figure out the syntax errors.
Likewise, Redhat users rely on GUI too much, they learn nothing in return. GUI is mainly for two kind of people: 1) ease of configuration and time consuming for people who know how to configure things manually
2) lazy to learn, just want to get things running ASAP.
|