
April 18th, 2005, 01:41 PM
|
 |
Contributing User
|
|
Join Date: Jun 2003
Location: Thessaloniki
Posts: 760
Time spent in forums: 2 Days 9 h 25 m 12 sec
Reputation Power: 6
|
|
Perl + Dreamweaver?
Iam currently learning Perl and especially CGI.
I was wondering what is the best way to create a web interface in conjuction with Perl so to avoid handcoding html?
Perl + Dreamweaver?
Until no i usef cgi.pm module but its very dull writing stuff like this:
Code:
print start_form(-action=>'show.pl');
print table( {-border=>1, -width=>'60%', -align=>'center', -style=>'border: ridge magenta; color: yellow; font-family: Times; font-size: 18px', -background=>'../data/images/swirl.jpg'},
Tr( {-align=>'center'}, td( "Πώς σε λένε αδελφέ?" ), td( textfield( 'onoma' ))),
Tr( {-align=>'center'}, td( "Ποιά είναι η γνώμη σου για την ευχούλα
\"Κύριε Ιησού Χριστέ Ελέησον Με\"?" ), td( textarea( -name=>'euxoula', -rows=>4, -columns=>25 ))),
Tr( {-align=>'center'}, td( "Μοιράσου μαζί μας μία κατά τη γνώμη σου
θαυμαστή προσωπική πνευματική εμπειρία
από κάποιον γέροντα προς ώφελος των
υπολοίπων αδελφών (αν φυσικά έχεις :-)" ), td( textarea( -name=>'sxolio', -rows=>6, -columns=>25 ))),
Tr( {-align=>'center'}, td( "Ποιό είναι το e-mail σου?" ), td( textfield( 'email' ))),
Tr( {-align=>'center'}, td( submit( 'Εμφάνιση όλων των απόψεων' )), td( submit( 'Αποστολή' ))));
print end_form(), br(), br();
I need something a lot more easier and quick method
__________________
What is now proved was once only imagined!
|