|Wystawione w kategorii:
Masz taki przedmiot na sprzedaż?

Pisanie aplikacji CGI z perłem autorstwa Brenta Michalskiego i Kevina Meltzera...

Tekst oryginalny
Writing CGI Applications with Perl by Brent Michalski and Kevin Meltzer...
Stan:
Dobry
Cena:
US $4,99
Około20,21 zł
Wysyłka:
US $4,87 (około 19,72 zł) Wysyłka ekonomiczna. Zobacz szczegółydla wysyłki
Znajduje się w: Pittsburgh, Pennsylvania, Stany Zjednoczone
Dostawa:
Szacowana między So, 22 cze a Śr, 26 cze do 43230
Czas dostawy jest szacowany naszą metodą na podstawie odległości między kupującym a lokalizacją przedmiotu, wybranej usługi wysyłkowej, historii wysyłek sprzedawcy i innych czynników. Czasy dostawy mogą się różnić, szczególnie w okresach największego ruchu.
Płatności:
     

Kupuj bez obaw

Gwarancja zwrotu pieniędzy eBay
Otrzymasz przedmiot, jaki zamawiasz, albo zwrot pieniędzy. 

Informacje o sprzedawcy

Zarejestrowany jako prywatny sprzedawca, więc prawa konsumenckie wynikające z przepisów UE o ochronie konsumentów nie obowiązują. W przypadku większości zakupów nadal obowiązuje Gwarancja zwrotu pieniędzy eBay.Dowiedz się więcejZarejestrowany jako prywatny sprzedawca
Sprzedawca ponosi pełną odpowiedzialność za wystawienie tej oferty sprzedaży.
Nr przedmiotu eBay: 265978367050

Parametry przedmiotu

Stan
Dobry: Książka, która była czytana, ale nadal jest w dobrym stanie. Na okładce widoczne są ...
ISBN
9780201710144
Subject Area
Computers
Publication Name
Writing CGI Applications with Perl
Item Length
9.3 in
Publisher
Addison Wesley Professional
Subject
Programming Languages / Perl, Programming Languages / Javascript, Networking / Network Protocols
Publication Year
2001
Type
Textbook
Format
Trade Paperback
Language
English
Item Height
1.2 in
Author
Brent Michalski, Kevin Meltzer
Item Width
7.5 in
Item Weight
33.7 Oz
Number of Pages
560 Pages

O tym produkcie

Product Information

Writing CGI Applications with Perl is a start-to-finish guide to accomplishing key Web development tasks by fully using the power of Perl and CGI together. Using extensive examples, careful line-by-line explanations, and skill-stretching exercises, it not only provides useful cut-and-paste code: it also teaches the practical skills and techniques you'll need to build virtually any CGI-based application. Kevin Meltzer and Brent Michalski cover every key area of Web application development with Perl: database integration, form and file handling, security, e-mail, graphics, and more. The book's in-depth coverage includes: working with HTML Web forms and obtaining user input; placing cookies and tracking clicks; connecting to POP3 e-mail servers; embedding Perl in HTML using HTML::Mason; remote file management across the Web; creating dynamic images; and working with XML. The book also provides detailed explanations and examples of working with Perl DBI, as well as start-to-finish coverage of configuring and using the popular mod_perl Apache module. All of the sample code will be available at a companion web site.

Product Identifiers

Publisher
Addison Wesley Professional
ISBN-10
0201710145
ISBN-13
9780201710144
eBay Product ID (ePID)
1863125

Product Key Features

Author
Brent Michalski, Kevin Meltzer
Publication Name
Writing CGI Applications with Perl
Format
Trade Paperback
Language
English
Subject
Programming Languages / Perl, Programming Languages / Javascript, Networking / Network Protocols
Publication Year
2001
Type
Textbook
Subject Area
Computers
Number of Pages
560 Pages

Dimensions

Item Length
9.3 in
Item Height
1.2 in
Item Width
7.5 in
Item Weight
33.7 Oz

Additional Product Features

LCCN
00-066512
Lc Classification Number
Qa76.73.P22m45 2001
Table of Content
Foreword. Preface. Acknowledgments. 1. Perl, CGI, and this Book. What Is Perl?What Is CGI?Why Perl Is Good for CGI.About this Book.Who Is this Book For?Conventions Used in this Book.Using perldoc.Using the CPAN. 2. What You Should Know. Prerequisites.Editors.File Permissions.Basic Security Concerns.Using -T.Checking for Taintedness and Laundering Data.Your PATH and -T.Installing a Script.Troubleshooting.Caching.The Expires HTTP Header.Cache-Control HTTP Header.Listings. 3. Using Your Environment. Introduction to %ENV.Adding to %ENV.Form Input Primer.Example Script: Visitor Log.Example Script: Basic Report.Reader Exercise.What Have We Learned?Listings. 4. Introduction to Web Forms. Introduction.Form Tags.Reading Form Input with CGI.pm.Making Your Users Happy.Final Example.User Exercises.Program Listings. 5. Working with Cookies. Introduction.Security.Limitations.Cookie Pieces.Working with Cookies the Manual Way.Baking Cookies with CGI.pm.Controlling User Preferences with Cookies.User Exercises. 6. Access Counters. Introduction.Example Script: SSI Text Counter.Example Script: SSI Image Counter.Example Script: SSI Text Counter, with a Twist.Example Script: An Imageless Image Counter.Counter Conclusion.Reader Exercises.Listings. 7. Web-Based File Uploading. Introduction.File Uploading Basics.Viewing Files.Uploading Multiple Files.Reader Exercises.File Listings. 8. Tracking Clicks. Introduction.Example Script: A Simple Click Tracker.Example Script: Random Images.Example Script: Click Tracking (Reprise).Reader Exercises.Listings. 9. Using mod_perl. What Is mod_perl?Configuring mod_perl.Apache::Registry.Automatic Headers and Footers with Apache::Sandwich.A mod_perl Photo Album with Apache::Album.Authentication with Apache::AuthDBI.Writing a mod_perl Handler.Reader Exercises.Listings. 10. Web-Based E-mail. Introduction.Example Script: Checking POP3 Mail via the Web.Example Script: Reading E-mail via the Web.Example Script: Displaying Attachments.Example Script: Composing E-mail.Reader Exercises.Listings. 11. Introduction to DBI and Databases on the Web. Introduction.Using the Perl DBI.Connecting to the Database.Disconnecting from the Database.Preparing and Executing an SQL Query.Fetching Data.The fetchall_arrayref( ) Method.The fetchrow_arrayref( ) Method.The fetchrow_hashref( ) Method.The bind_columns( ) Method.Putting It All Together.The do( ) Method.Wrapping It Up.Reader Exercises.Listings. 12. Tied Variables. Introduction.Setting It All Up.Getting Started.Diving In.The Main Program.Finishing the ShopCart Module.Running the Program.Wrapping It Up.Program Listings. 13. Embedding Perl in HTML with Mason. Introduction.Installation.The Strategy.Mason Syntax.Special Mason Components.Cascading Execution.Moving Right Along.rss2html.my_news.footer.Wrapping It Up: The Code for the Example Site. 14. Document Management via the Web. Introduction.The Plan.auth.cgi.shared.pl.main.cgi.upload.cgi.viewer.cgi.Program Listings. 15. Dynamically Manipulating Images. Introduction.Adding Shapes and Text.Creating a Dynamic Graph.Creating Thumbnail Images.Filtering Images with Image::Magick.Animated Images.Reader Exercises.Listings. 16. RSS And XML. XML and RSS Overview.Structure of an XML Document.News Portals with RSS.A Home Page News Portal.Creating an RSS File.Reader Exercises.Listings. Appendix A. Server Codes. Provide confirmation that a request is being processed.Request was performed.Request not performed.Request is incomplete.Internal server errors. Appendix B. Environment Variables. Appendix C. POSIX::strftime( ) Formats. Appendix D. General Public License. Appendix E. Artistic License. Appendix F. Perl Documentation. Appendix G. ASCII Codes. Appendix H. Special HTML Characters. Resources. Index. 0201710145T04062001
Copyright Date
2001
Target Audience
Scholarly & Professional
Dewey Decimal
005.2/762
Dewey Edition
21
Illustrated
Yes

Opis przedmiotu podany przez sprzedawcę

illuminatedlights

illuminatedlights

100% opinii pozytywnych
Sprzedane przedmioty: 316
Zwykle odpowiada w ciągu 24 godzin

Oceny szczegółowe

Średnia z ostatnich 12 miesięcy

Dokładność opisu
5.0
Przystępny koszt wysyłki
4.8
Szybkość wysyłki
5.0
Komunikacja
5.0
Zarejestrowany jako prywatny sprzedawca
W związku z tym prawa konsumenckie wynikające z przepisów EU o ochronie konsumentów nie obowiązują. W przypadku większości zakupów nadal obowiązuje Ochrona kupujących eBay. Dowiedz się więcejDowiedz się więcej

Opinie sprzedawców (177)

t***e (39)- Opinie wystawione przez kupującego.
Ostatni miesiąc
Zakup potwierdzony
Exactly as described!
a***7 (562)- Opinie wystawione przez kupującego.
Ostatni miesiąc
Zakup potwierdzony
Fantastic Seller.... Highly Recommended, Excellent Communication..... Thank You Very Much!
9***y (529)- Opinie wystawione przez kupującego.
Ostatnie 6 miesięcy
Zakup potwierdzony
Fast shipping....👍😊