in reply to print html/javascript

Your script sets $javascript to one multi-line string, and $javanext to another, but you never print them.

To resolve this, replace   my $javascript = <<'TOAD'; with   print <<'TOAD'; and   my $javanext = <<'FROG'; with   print <<'FROG';

(And I assume you left off the <body>..</body> tags so that you could post a smaller example.)

Replies are listed 'Best First'.
Re: Re: print html/javascript
by malaga (Pilgrim) on Apr 02, 2001 at 04:01 UTC
    oh sh__. it's always something stupid. thanks. this worked beautifully. (yes, i just shortened it all up for the post. )