ashwani has asked for the wisdom of the Perl Monks concerning the following question:
#!/usr/bin/perl print "Content-type:text/html\n\n"; print "<HTML><HEAD>"; print "<TITLE>HelloWorld</TITLE></HEAD>"; print "<BODY BGColor=fffff><TABLE Width='100%'><TR><TD><H2>Hello World +..!</H2></TR></TD></TABLE>"; print "</BODY></HTML>";
#!/usr/bin/perl print "Content-type:text/html\n\n"; print <<HTML_END; <HTML><HEAD> <TITLE>HelloWorld</TITLE></HEAD> <BODY BGColor=fffff><TABLE Width='100%'><TR><TD><H2>Hello World..!</H2 +></TR></TD></TABLE> </BODY></HTML> HTML_END
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re: perl application's executable not shwoing result!
by ikegami (Patriarch) on Aug 08, 2006 at 07:12 UTC | |
| |
|
Re: perl application's executable not shwoing result!
by tweetiepooh (Hermit) on Aug 08, 2006 at 10:02 UTC | |
|
Re: perl application's executable not shwoing result!
by GrandFather (Saint) on Aug 08, 2006 at 07:27 UTC | |
|
Re: perl application's executable not shwoing result!
by Cody Pendant (Prior) on Aug 08, 2006 at 07:43 UTC | |
|