World Famous Comics NetworkWorld Famous Comics Network World Famous Comics CommunityComic Book ClassifiedsSketchCards.com
WFC Home | About | Columns | Comics | Contests | Features | Freebies | Gallery | Links | News | Podcasts | Shop
SHOP >> David Mack | Andy Lee | Amy Allen | Michonne | Dean Haglund | Virginia Hey | WFC Published | WFC Auctions



ScheduleUPDATED TODAY! Fri, 5-Dec-2008
Anything Goes TriviaAnything Goes Trivia
Bob Rozakis
Megaton ManMegaton Man
Don Simpson
TrevorTrevor
Piper & Lee


NewsNEWS 5-Dec-2008 12:54am
Miller Says Sin City 2 is Getting Closer
First Shot From the Wolverine Game!
Update: Dragonball Gets a New Title?
‘Punisher: War Zone' review: Don't...

Comic Book - Movie - Video Game - Anime 

Order Serenity Comics, Graphic Novels, DVDs & More!
Friends & Affiliates
Adobe Store
Amazon.com
Anime Studio
Apple Store
Dick Blick Art Materials
eBay
GoDaddy.com

StarWarsShop.com
TFAW
World Famous Comics: Practical PHP and MySQL(R): Building Eight Dynamic Web Applications (Negus Software Solutions Series)
Practical PHP and MySQL(R): Building Eight Dynamic Web Applications (Negus Software Solutions Series)
By: Jono Bacon
Publisher: Prentice Hall PTR
Average Rating:2.00 out of 5.00 stars
Binding: Paperback
Label: Prentice Hall PTR
Number of Items: 1
Number of Pages: 528
Publication Date: November 24, 2006

Enlarge Image
Practical PHP and MySQL(R): Building Eight Dynamic Web Applications (Negus Software Solutions Series)
List Price: $39.99
Used Price: $4.49
3rd Party New: $5.00
Amazon's Price: $30.39

You Save: $9.60 (24%)
Usually ships in 24 hours


Similar Items

PHP Solutions: Dynamic Web Design Made Easy (Solutions)

PHP and MySQL by Example

Beginning PHP and MySQL: From Novice to Professional, Third Edition (Beginning from Novice to Professional)

PHP Cookbook (Cookbooks (O'Reilly))

Hot Text: Web Writing that Works (VOICES)
More Similar Items...

Editorial Comments

Product Description:

"Practical PHP and MySQL reflects Jono's commitment to the spirit of making open source subjects accessible to everyone. The book carefully walks you through the code for eight useful, dynamic Web applications. Projects are presented in a playful way, like the forum project that touts horror movies that make you 'hide behind the couch.'"
-From the Foreword by Christopher Negus, Series Editor, Negus Live Linux Series





Build Dynamic Web Sites Fast, with PHP and MySQL...

Learn from Eight Ready-to-Run Applications!

 

Suddenly, it’s easy to build commercial-quality Web applications using free and open source software. With this book, you’ll learn from eight ready-to-run, real-world applications—all backed by clear diagrams and screenshots, well-documented code, and simple, practical explanations.

 

Leading open source author Jono Bacon teaches the core skills you’ll need to build virtually any application. You’ll discover how to connect with databases, upload content, perform cascading deletes, edit records, validate registrations, specify user security, create reusable components, use PEAR extensions, and even build Ajax applications.

 

Working from complete examples on the CD-ROM, you’ll create

  • Generic dynamic Web sites
  • Blogs
  • Discussion forums
  • Shopping carts
  • Auction sites
  • Calendars
  • FAQ systems
  • Reusable components
  • Content management systems
  • News sites

 

JONO BACON is Ubuntu community manager for Canonical, Ubuntu’s sponsor. He is an established speaker, author, and contributor to the open source community. Bacon co-authored Linux Desktop Hacks and The Official Ubuntu Book; has served as a columnist for Linux Format, Linux User & Developer, and PC Plus; and is an O’Reilly Networkweblog author. He is a lead developer onthe Jokosher (www.jokosher.org) project,and co-founder of LUGRadio—a podcastwith more than 15,000 listeners, andan annual event that attracts visitorsfrom around the world.

 

CD-ROM Includes

  • XAMPP for Linux: easy-to-install, preconfigured Apache distributions containing MySQL, PHP, Perl, and more
  • Source code for all eight fully-working applications discussed in the book
  • A remastered Ubuntu live CD, set to run all eight applications live

 

System Requirements

  • CPU: Pentium III, 650 MHz. RAM: 256MB (recommended 512MB).
  • Hard disk: No space required to run live CD; 250MB of space needed to put XAMPP server and projects on installed system.


Customer Reviews
Average Rating:2.00 out of 5.00 stars

1 out of 5 starsFull of Errors
Don't waste your time with this book, there are to many errors in the code.
This one's heading to the burn pile.



2 out of 5 starsI've read it letter by letter
The samples are good, the mySQL stuff not so explained -- however the book has ALOT of grammar error! The code has bugs and some code does not even work -- for example missing curly braces in the book's code -- i've had to debug myself.



1 out of 5 starsDo not buy this book!
I cannot stress the fact on how much this book needs editing. I am an intermediate php programmer. I thought that this book would help me build "eight dynamic web applications" without so many errors. I bought the book with the intention to learn, not to help make corrections for the author. You cannot even get through the first application ("Chapter 4: Building a Weblog") example without encountering substantial typos. When going through the examples, I feel like i am back-tracking trying to figure out whether if I typed something wrong or if its the book that printed the material wrong.

I'm actually looking on Amazon to buy another book with better reviews. I wish i looked at the reviews for this book before i bought it, I would have saved me some money.



2 out of 5 starsTech Editor Desperately Needed
Wait for the 2nd edition. If the book had gone through a thorough tech editing (type in and run the code!) before going to the presses, this might have been a 4-star book.

If you are the type of person that can learn by just looking at code and getting a broad sense of how it works, then there might still be some useful information in here for you. I learn by doing, which made typing in the buggy examples a frustrating experience. While I also learned some by debugging this book, but that is not the experience I paid for. There is no online errata for this book that I am able to find.

If you just want view code without typing it in, the "Live CD" might be of use to you. The code on the CD is apparently a more debugged version of the code shown in the text of the book. The concept of booting up into Linux on a CD to do your own coding PHP and MySQL is not as useful as the publisher makes it out to be, because there is no way to easily save anything you do there.

I started to do my own tech editing of the book around page 40. Here are examples of some of the types of errors you can expect:
Page 42: Database name incorrectly referred to as "perfectproducts." Should be "productsdb."
Page 43: Database column name incorrectly referred to as "if." Should be "id."
Page 45: Missing steps in instructions for setting up database connection. Reader needs to set up user permissions in phpMyAdmin, and also edit code to include the new user information.
Page 68: Table 4-2 column header should be "BLOG_ID" instead of "CAT_ID."
Page 77-78: The sample code will output invalid HTML unless you move around where it writes out the opening and closing paragraph tags.
Page 81: The sample code will output invalid HTML unless you move around where it writes out the closing UL tag.
Page 99: Missing the required opening and closing PHP tags around the code that includes the footer PHP file.
Page 100: Last paragraph should refer to adding code under the "home" link instead of the "categories" link. Instructions say to add the code inside the PHP block, but the non-bolded text above the PHP block needs to be added as well.

Those were freebies. Prentice Hall, the "world's leading educational publisher" should foot the bill to edit the rest.



4 out of 5 starsPromising to be GOOD
This book promises to be good. The delivery was very quick and I am looking forward to an exciting study sessions.

As always, it was a Good business.

Thanks a lot for this material


Related Categories:Similar Items

PHP Solutions: Dynamic Web Design Made Easy (Solutions)

PHP and MySQL by Example

Beginning PHP and MySQL: From Novice to Professional, Third Edition (Beginning from Novice to Professional)

PHP Cookbook (Cookbooks (O'Reilly))

Hot Text: Web Writing that Works (VOICES)
More Similar Items...

Books
 Comics
  Comic Strips
  How to Draw Comics
  How to Draw Manga

 Graphic Novels
  AiT/Planet Lar
  Alternative Comics
  Archie Comics
  Avatar Press
  DC Comics
    Batman
    Justice League
    Superman
  Dark Horse Comics
    Hellboy
    Sin City
    Star Wars
  Drawn & Quarterly
  Devil's Due Publishing
  Dreamwave
  Fantagraphics Books
  Gemstone/Gladstone
  IDW Publishing
  Image Comics
  Kitchen Sink Press
  Marvel Comics
    Fantastic Four
    Spider-Man
    Wolverine
    X-Men
  Oni Press
  SLG/Slave Labor
  TwoMorrows
  Top Shelf Productions

 Manga
  ADV Manga
  Antarctic Press
  Central Park Media
  Digital Manga
  Gutsoon
  TokyoPop
  Viz Communications

 Books
  Animation
  Antiques & Collectibles
  Art Instruction & Ref.
  Art Reference
  Arts
  Business
  Cartooning
  Children's
  Computer Graphics
  Computers & Internet
  Digital Business
  Drawing (general)
  Entertainment
  Entrepreneurship
  Figure Drawing
  Games
  Graphic Design
  Horror
  Humor
  Literature & Fiction
  Movies
  Music
  Mystery & Thrillers
  Nonfiction
  Photography
  Pop Culture Collectibles
  Popular Culture
  Publishing & Books
  Reference
  Role Playing & Fantasy
  Sci-Fi & Fantasy
  Screenwriting Film
  Screenwriting TV
  Sketchbooks/Journals
  Stationary
  Teens
  Television
  Toys
  Video Games
  Writing

 Calendars


WFC Home | About | Columns | Comics | Contests | Features | Freebies | Gallery | Links | News | Podcasts | Shop



World Famous Comics Network
World Famous Comics Community
ComicsCommunity.com
Comic Book Classifieds
ComicBookClassifieds.com
SketchCards.com
SketchCards.com

GO SHOPPING >>

© 1995 - 2008 World Famous Comics. All rights reserved. All other © & ™ belong to their respective owners.
Advertiser Info . Terms of Use . Privacy Policy . Contact Info
World Famous Comics Network