Perl Cd Bookshelf [Electronic resources] نسخه متنی

اینجــــا یک کتابخانه دیجیتالی است

با بیش از 100000 منبع الکترونیکی رایگان به زبان فارسی ، عربی و انگلیسی

Perl Cd Bookshelf [Electronic resources] - نسخه متنی

| نمايش فراداده ، افزودن یک نقد و بررسی
افزودن به کتابخانه شخصی
ارسال به دوستان
جستجو در متن کتاب
بیشتر
تنظیمات قلم

فونت

اندازه قلم

+ - پیش فرض

حالت نمایش

روز نیمروز شب
جستجو در لغت نامه
بیشتر
لیست موضوعات
توضیحات
افزودن یادداشت جدید










32.4. CGI



use CGI qw(:standard);
$who = param("Name");
$phone = param("Number");
@picks = param("Choices");



The CGI module helps manage HTML forms, especially
multistage forms where passing state from one stage to another is
critical. The extremely simple example above expects to process a
form with two parameters that take single values, such as text fields
or radio buttons, and one that takes multiple values, like scrolling
lists specified as "MULTIPLE". The module is
several orders of magnitude fancier than this, supporting such
features as convenient cookie processing, persistent values for
multiscreen shopping carts, and dynamic generation of HTML lists and
tables you might pull from a database--just to name a few.
Support for turbo-charged execution of precompiled Perl scripts
through Apache's mod_perl facility is also
provided. The O'Reilly book Writing Apache Modules with
Perl and C
, by Lincoln Stein and Doug MacEachern, can tell
you all about this.






/ 875