Take a look at HTML::Template (or one of the many other template modules)
on CPAN;
Thanks !!
I just got it fixed (2 min ago) using the following structure :
#---
&print_html($file_adapt);
sub print_html {
open(FF, "< @_");
while($line=) {
$line =~ s/(\$[\w\]\[\$]
On Tue, 04 Nov 2003 09:49:43 +0100, David van der G wrote:
> I have a CGI-script that needs to print an html-page containing variables
> dependent on the choise you make.
Don't mix Perl code and HTML (or other presentation data). Take a look at
HTML::Template (or one of the many other template m