Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations gkittelson on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

cgi.pm generated HTML question.

Status
Not open for further replies.
Jun 20, 2003
40
GB
I'm trying to form a refresh on a page but can't seem to get it function.

Using the following code :-

my $q = CGI->new:
print $q->header;
print $q-start_html('Live Status Report', -head=>meta({-http_equiv=>'Refresh'}));
 


Code:
#!/usr/bin/perl
use CGI;
my $q = CGI->new;
print $q->header;
print $q->start_html(-title => 'Live Status Report', -meta =>{http_equiv=>'Refresh'});
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top