anikng has asked for the wisdom of the Perl Monks concerning the following question:
Front end.html <html> <body> <h3> <center>TRANSCRIPTION FACTOR FAMILY</center></h3> <form action="/var/www/test.cgi" method="GET"> <input type="submit" value="ABC"> </form> </body> </html>
test.cgi,
Thanks, anikng#!/usr/bin/perl use CGI; use CGI::Carp qw(fatalsToBrowser warningsToBrowser); $q=new CGI; print "Content-type: text/html\n\n"; @field=$q->param(); $name=$q->param("value"); print<<"OUTPUT"; <html> <head> <title> FAMILY SELECTION </title> </head> + <body> <img src="/var/www/bb.jpg" size=100"> <br><br><br><br><br> <center><table border=0> <tr><td> </td></tr> </table></center> </body> </html> OUTPUT
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re: CGI SCRIPT ITSELF IS DISPLAYED
by skx (Parson) on Sep 21, 2014 at 08:18 UTC | |
|
Re: CGI SCRIPT ITSELF IS DISPLAYED
by Corion (Patriarch) on Sep 21, 2014 at 07:59 UTC | |
|
Re: CGI SCRIPT ITSELF IS DISPLAYED
by Anonymous Monk on Sep 21, 2014 at 09:14 UTC | |
by Anonymous Monk on Sep 26, 2014 at 07:52 UTC | |
by Corion (Patriarch) on Sep 26, 2014 at 07:59 UTC | |
by Anonymous Monk on Sep 26, 2014 at 08:06 UTC | |
|
Re: CGI SCRIPT ITSELF IS DISPLAYED
by locked_user sundialsvc4 (Abbot) on Sep 22, 2014 at 14:24 UTC |