#subroutines sub content; #parameter in modules template my ($self,$content=,) = @_; #scalar placing content my $html = ''; #body content $html .='
##
# i used the parameter in my web content with single quotes
..
print MODULES::template->content('XXX');
..
####
print <
Students id
First Name
Last Name
Date Of Birth
Year In
Password
Email
Telepon
EOF
while (my @row_array = $sth->fetchrow_array()) {
print <
$row_array[0]
$row_array[1]
$row_array[2]
$row_array[3]
$row_array[4]
$row_array[5]
$row_array[6]
$row_array[7]
EOF
}
print"";