生成HTML表单并在一个PERL / CGI文件中处理它

时间:2017-01-15 21:59:35

标签: forms perl cgi

我正在尝试使用PERL / CGI创建一个表单,我想在同一个CGI文件中处理该表单中引入的数据。

这是我的代码:

#! /usr/bin/perl

use CGI qw(:standard);

my $cgi = new CGI;

print header, start_html("Shop web"),

  h1({-align=>center, -style=>"color:blue;Font-Size: 35pt;"},'Oferta T-shirt' ), 
  "<p align=\"center\">
  \<img src=\"/img/t-shirts.jpg\" width=\"30%\">
    <\/p>",

    "<br\\>
    <table align = \"center\" border = \"2\" bordercolor=\"green\" >
            <col width=\"120\">
            <col width=\"120\">
            <col width=\"120\"> 
            <tr>
                <th bgcolor=\"lightgray\">Talla</th>
                <th bgcolor=\"lightgray\">Color</th> 
                <th bgcolor=\"lightgray\">Precio</th>
            </tr>
            <tr>
                <td align=\"center\">S</td>
                <td align=\"center\">Negro</td> 
                <td align = \"center\">8 &euro;</td>
            </tr>
            <tr>
                <td align=\"center\">M</td>
                <td align=\"center\">Blanco</td> 
                <td align=\"center\">9 &euro; </td>
            </tr>
            <tr>
                <td align=\"center\">L</td>
                <td align=\"center\">Azul</td> 
                <td align= \"center\">11.5 &euro; </td>
            </tr>
            <tr>
                <td align= \"center\">XL</td>
                <td align= \"center\">Rojo</td> 
                <td align= \"center\">12 &euro; </td>
            </tr>
            <tr>
                <td align= \"center\">XXL</td>
                <td align= \"center\">Amarillo</td> 
                <td align= \"center\">15.5 &euro; </td>
            </tr>
        </table> ",

        "<br />
        <h2 align=\"center\"><font color = \"blue\"> Compra tu camiseta</font></h2>
        <br>",

        "<center>

            <form action=\"compra.cgi\" method=\"POST\" >
                <input type=\"hidden\" name=\"subject\" value=\"Formulario por email\">
                <table> 

                    <tr><td>Direcci&oacuten de envio</td>
                        <td><input type=\"text\" name=\"nombre\" size=\"35\"></td>
                    </tr> 

                    <tr> 
                        <td>Cantidad</td> 
                        <td> <input type=\"text\" name=\"cantidad\" size=\"6\"></td> 
                    </tr> 

                    <tr> 

                        <td colspan=\"2\" align=\"center\">   
                            <br>
                            <input type=\"submit\" name=\"Enviar\" value=\"Comprar\"  style=\"height: 30px; width: 120px\"> 
                        </td> 
                    </tr> 
                </table> 
            </form> 
        </center>",


end_html();

换句话说:如何处理表单中引入的数据而不创建另一个CGI文件来捕获该数据。

感谢任何帮助。

2 个答案:

答案 0 :(得分:1)

#!/usr/bin/perl -w

use CGI qw/:standard/;

print header( 'text/plain' );

$cgi = CGI->new();

if ( $cgi->param )
{
    <<< YOU HAVE POST DATA - PROCESS IT >>>
}
else
{
    <<< THERE IS NO POST DATA - PRINT YOUR HTML >>>
}

我这样做......

答案 1 :(得分:0)

您似乎在20世纪90年代中期编写了一个Web应用程序。这至少会让您在本千禧年开始时使用Perl实践。

#!/usr/bin/perl

use strict;
use warnings;

use CGI qw[params header];
use Template;

my $tt = Template->new;

if (params) {
  # We have some CGI parameters, extract them, do something
  # useful with them and then display a page thanking the user.

  my $foo = param('foo');
  my $bar = param('bar');

  process_user_input($foo, $bar);

  $tt->process('thankyou.tt', { foo => $foo, bar => $bar })
    or die $tt->error;
} else {
  # No parameters, so let's show the user the input form
  $tt->process('form.tt')
    or die $tt->error;
}

请注意,我们避免使用CGI.pm中大量弃用的HTML生成函数。相反,我们使用Template Toolkit,这允许我们将输出分成模板文件(此处称为form.ttthankyou.tt)。

请注意,这里有一定数量的挥手,因为我不知道您的参数名称是什么或者您需要做些什么。

但这仍然是旧技术。建议您阅读CGI::Alternatives并将您的技术更新为本千年的内容。