in reply to MySQL Database Manager
It does appear you learned that CGI.pm is better, so please remove those offensive comments ;)#Get the input from the calling html document #read(STDIN,$buffer,$ENV{'CONTENT_LENGTH'}); #@params = split(/&/,$buffer);
Also, since you're bothering to use CGI; instead of:
use the CGI.pm equivalents to generate your html.print $cgi->header( "text/html" ); print qq~<HTML> <BODY>~; if ($header eq "yes"){ print qq~ <HTML> <HEAD> <META HTTP-EQUIV="Content-Type" CONTENT="text/html"> <TITLE>MySQL Database sorter.</TITLE> </HEAD> <BODY bgcolor="#FFFFFF"> <CENTER><H2>MySQL DataBase Sorter</A></H2> <br>~;
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re: Re: MySQL Database Manager
by hacker_j99 (Beadle) on Jul 27, 2001 at 21:40 UTC |