Books
- Official Guide to Programming with CGI.pm: The standard for building web scripts
- Web Developer.com Guide to Streaming Multimedia: All You Need to Know to Add Live Audio and Video to Your Website (Mecklermedia)
- Digital Literacy
- Winning Clients in a Wired World: How to Leverage Technology and the Web to Grow Your Business
- Online Marketing Handbook: How to Promote, Advertise and Sell Your Products and Services on the Internet
- Web Developer.com Guide to Producing Live Webcasts
- Building and Managing Virtual Private Networks: Business to Business Using the Internet
- Building N-tier Applications with COM and Visual Basic 6.0
- Choosing a Database for Your Web Site
- Online Family: Your Guide to Fun and Discovery in Cyberspace
- Visual Basic 6.0 Internet Programming
- The Nonprofit Guide to the Internet: How to Survive and Thrive (Wiley/NSFRE Fund Development S.)
- Internet Solutions for Project Managers (Operations Management)
- Day Trade Online: Start Trading for a Living Today (Wiley Trading Advantage S.)
- Advertising on the Internet
- Essential Ethernet Standards (Internet Standards S.)
- Essential E-mail Standards: RFCs and Protocols Made Practical (Internet Standards S.)
- Internet GIS: Distributed Geographic Information Services for the Internet and Wireless Networks
- Digital Marketing: Global Strategies from the World's Leading Experts
- Electronic Day Trading 101 (Wiley Online Trading for a Living S.)
- What Works in Online Trading
- Executive's Guide to E-commerce: From Tactics to Strategy
- Doing EBusiness: Strategies for Thriving in an Electronic Marketplace
- The Guru Guide to the Knowledge Economy
- J.K.Lasser's Invest Online: Do It Yourself and Keep More of What You Earn
Average customer rating:
- Straight From The Creator of CGI.pm
- Disappointing
- Wow, incredible high-level power in this module.
- Great Book!
- This book is a necessity but the examples don't all work
|
Official Guide to Programming with CGI.pm
Lincoln Stein
Manufacturer: Wiley
ProductGroup: Book
Binding: Paperback
Web Site Design
| Internet Commerce
| Web Development
| Computers & Internet
| Subjects
| Books
General
| Scripting & Programming
| Web Development
| Computers & Internet
| Subjects
| Books
Networks
| Networks, Protocols & APIs
| Networking
| Computers & Internet
| Subjects
| Books
General
| Networks, Protocols & APIs
| Networking
| Computers & Internet
| Subjects
| Books
CGI Programming
| Languages & Tools
| Programming
| Computers & Internet
| Subjects
| Books
General
| Languages & Tools
| Programming
| Computers & Internet
| Subjects
| Books
Perl
| Web Programming
| Programming
| Computers & Internet
| Subjects
| Books
General
| Web Programming
| Programming
| Computers & Internet
| Subjects
| Books
General
| Programming
| Computers & Internet
| Subjects
| Books
General
| Computers & Internet
| Subjects
| Books
General
| Software
| Computers & Internet
| Subjects
| Books
Engineering
| Professional & Technical
| Subjects
| Books
| Aerospace
| Automotive
| Bioengineering
| Chemical
| Civil
| Computer Technology
| Design
| Economics
| Education
| Electrical & Electronics
| Energy
| General
| Industrial, Manufacturing & Operational Systems
| Management
| Marine
| Materials
| Materials Science
| Mechanical
| Nuclear
| Patents & Inventions
| Petroleum, Mining & Geological
| Power Systems
| Reference
| Research
| Special Topics
| Telecommunications
| Welding
Engineering
| Specialty Stores
| Books
| Aerospace
| Automotive
| Bioengineering
| Chemical
| Civil
| Computer Technology
| Design
| Economics
| Education
| Electrical & Electronics
| Energy
| General
| Industrial, Manufacturing & Operational Systems
| Management
| Materials
| Materials Science
| Mechanical
| Nuclear
| Patents & Inventions
| Petroleum, Mining & Geological
| Power Systems
| Reference
| Research
| Special Topics
| Telecommunications
| Welding
Look Inside Computer Books
| Trip
| Specialty Stores
| Books
Qualifying Textbooks - Spring 2007
| Stores
| Books
General
| Software Books
| Custom Stores
| Stores
| Software
Similar Items:
- CGI Programming with Perl
- Writing CGI Applications with Perl
- MySQL and Perl for the Web (Landmark)
- CGI Programming 101: Programming Perl for the World Wide Web, Second Edition
- Programming the Perl DBI
ASIN: 0471247448 |
Amazon.com
CGI.pm, a Perl library for writing CGI scripts, delivers elegant solutions for using and updating Web forms. The author, Lincoln Stein, realized the need for a clean and simple way to manage forms and--as a columnist for the Perl Journal, a scientist at Cold Spring Harbor Laboratory, and a Web-based software author--created that solution. He's (refreshingly) humble about this creative process, explaining that it took him a few steps until he realized the key to this HTML/Perl hybrid: simplicity.
The CGI.pm standard allows the site manager to separate data from its HTML markup for use in CGI forms. For example, all the elements in a short drop-down menu of vegetables can be placed in one array, changing this:
peas
broccoli
cabbage
to this:
li(['peas','broccoli,'cabbage'])
to be used later throughout a Perl script.
The Official Guide to Programming with CGI.pm is geared toward a reader who is familar enough with Perl to have used modules and knowledgeable about HTML and Web-site design. Stein uses CGI.pm for tables, drop-down menus, guest books, single-page or multipart forms, image maps, and cookies. The author of both the book and Perl library function, Stein provides ample discussion of all of these areas, along with strong code examples. The book ends with a verbose reference guide detailing all of CGI.pm's functions and features, grouped both alphabetically and by topic.
The use of CGI.pm requires a mind shift for Web site managers, but it's one worth making. Instead of tags for 'input' and 'select', CGI.pm uses statements such as "checkbox ()" and "textfield ()," allowing documents to be read easily and updated quickly. --Jennifer Buckendorff
Book Description
A complete guide to creating interactive Web pages using the Perl CGI.pm library from its creator.
Official Guide to Programming with CGI.pm contains all the information about CGI.pm found in Perl's online manual, but in a completely reorganized and greatly expanded format. It also includes valuable labor-saving tips and hints you won't find anywhere else. Featuring step-by-step instructions and complete source code, it shows you how to:
* Download, install, and configure CGI.pm
* Generate HTML documents on the fly
* Process fill-out forms and create multipage documents
* Perform script debugging and state maintenance
* Design interactive clickable image maps
* Store and process cookies
* Attach JavaScript and cascading style sheets to your documents
* Write state-maintaining scripts
* Modify and extend CGI.pm
* Tap the Comprehensive Perl Archive Network (CPAN).
Visit the companion Web site at www.wiley.com/compbooks/stein
On the Web site you'll find:
* The most recent and all future revisions to the CGI.pm module
* All the source code examples from the book
* Online documentation for CGI.pm
* Links to CPAN and other Web-related software written by the author.
Visit our Web site at www.wiley.com/compbooks/
Customer Reviews:
Straight From The Creator of CGI.pm.......2006-05-21
This is one of my favorite computer books of all time. I enjoyed it as a way to learn to use the CGI perl module, several years ago, and I use it from time to time now as a reference. The author presented his material with a fair amount of humor, especially in the examples, and with great clarity. Of all the perl modules out there, I probably use CGI.pm more than any other, with DBI.pm coming in a close second. So, if you're planning on using perl to generate web pages, this book will be very useful. While learning to use the CGI.pm I also read two other books and this book by Lincoln Stein was the most useful and informative of the ones I read.
Disappointing.......2006-01-09
I gave up on this book after 185 pages. Admittedly, I learned a lot about using Lincoln Stein's CGI module using this book, but it was not always easy. On the upside most of his explanations are clear. However the examples are replete with errors and the typography used for the code listings make it easy to introduce new errors.
Wow, incredible high-level power in this module........2004-05-19
The author has done a wonderful job of explaining how to use the CGIpm module. If you understand the basics of perl, you should be able to go through the bulk of this book. And with just a slight acquaintance with Perl references and anonmous list, you'll be surprised how quick and easy this is to master. This book puts other CGI books to shame because other books shy away from discussing all the cool functions in CGI.pm.
Great Book!.......2004-01-01
This book helped me make the transition to object oriented perl. Oh yeah, and it's filled with all the CGI you'll need. Thank you Lincoln Stein!!
This book is a necessity but the examples don't all work.......2003-05-07
I must confess that I could do virtually none of the programming that I do without Lincoln's fine work, but it's sometimes frustrating with so many broken examples.
Once you figure out the syntax, you'll be OK. There's a lot of easy-to-find reference. Make sure you test very small sections of code on their own and insert it into your programs when you get it working. Then refer to your working programs (copy & paste) when you make others.
Again, much credit needs to be given to Mr Stein, but Paul DuBois' Book MySql and Perl For The Web explains CGI.pm much better (you'll still need Stein's book if you're going to be serious about CGI) with examples that really,really, work, extreme attention to detail, and incredible organization.
Books:
- Official Guide to Programming with CGI.pm: The standard for building web scripts
- E-Business and ERP: Transforming the Enterprise
- Psychology Resources on the World Wide Web
- Net.sex: A Discreet Guide to the Adult Side of the Internet
- WebObjects: Web Application Construction Kit
- E-Leadership: Guiding Your Business to Success in the New Economy
- On-line Job Hunting: Great Answers to Tough Questions
- New Perspectives on Microsoft FrontPage 97: Introductory (New Perspectives)
- The Web After Work for Dummies (For Dummies S.)
- Dreamweaver 4 Weekend Crash Course
Books