in reply to HTML coded for in PERL

So your problem is primarily HTML, then, if I am reading this correctly?

You may get better/more accurate help at an HTML site.

Beyond that, post (in readmore and code tags), the output HTML and some may be able to help.

One thing you might want to try to do is use HERE documents, or single quoted print strings to avoid interpolation where it's unwanted.

e.g.:
print q{ <table width="100%"> <tr><td>blah blah blah</td></tr> <tr><td> ); print $my_value; print q{</td></tr> </table> };

Replies are listed 'Best First'.
Re: HTML coded for in PERL
by MonkPaul (Friar) on May 18, 2005 at 17:01 UTC
    I was just wondering if the @cut array was causing the problem. If it is i think i will just leave it as i think i may have to write a function to include a line break in the perl code.
      #!/usr/bin/perl -w my @cut = qw( this is a bunch of entries in an array that I want to se +e what it outputs as if I just print the array as a whole ok? ); print("<B>Digested:</B>@cut</TD></TR>"); __END__ <B>Digested:</B>this is a bunch of entries in an array that I want to +see what it outputs as if I just print the array as a whole ok?</TD>< +/TR>
      Looks like it shouldn't be a problem, but, again, it might help to see the HTML output instead.
        The Web address for the code is
        http://biolinux.cs.man.ac.uk/~msc0516/Startup.cgi

        Sorry, should'nt paste this as mentioned below