PHP 6 Fast and Easy Web Development, 1st Edition and over one million other books are available for Amazon Kindle. Learn more

Buy New

or
Sign in to turn on 1-Click ordering.
or
Amazon Prime Free Trial required. Sign up when you check out. Learn More
Buy Used
Used - Good See details
$17.42 & eligible for FREE Super Saver Shipping on orders over $25. Details

or
Sign in to turn on 1-Click ordering.
 
   
Kindle Edition
 
   
Sell Back Your Copy
For a $3.00 Gift Card
Trade in
More Buying Choices
Have one to sell? Sell yours here
PHP 6 Fast and Easy Web Development
 
 
Start reading PHP 6 Fast and Easy Web Development, 1st Edition on your Kindle in under a minute.

Don't have a Kindle? Get your Kindle here, or download a FREE Kindle Reading App.

PHP 6 Fast and Easy Web Development [Paperback]

Matt Telles (Author), Julie C. Meloni (Author)
2.3 out of 5 stars  See all reviews (12 customer reviews)

List Price: $34.99
Price: $20.50 & eligible for FREE Super Saver Shipping on orders over $25. Details
You Save: $14.49 (41%)
  Special Offers Available
o o o o o o o o o o o o o o o o o o o o o o o o o o o o o o o o o o o o o o o o o o o o o o o o o o o o o o o o o o o o o o o o
In Stock.
Ships from and sold by Amazon.com. Gift-wrap available.
Only 17 left in stock--order soon (more on the way).
Want it delivered Monday, January 30? Choose One-Day Shipping at checkout. Details
Textbook Student FREE Two-Day Shipping for Students. Learn more

Formats

Amazon Price New from Used from
Kindle Edition $18.45  
Paperback $20.50  
Sell Back Your Copy for $3.00
Whether you buy it used on Amazon for $15.00 or somewhere else, you can sell it back through our Book Trade-In Program at the current price of $3.00.
Used Price$15.00
Trade-in Price$3.00
Price after
Trade-in
$12.00

Book Description

1598634712 978-1598634716 January 25, 2008 1
Learn to create Web pages quickly and easily with PHP--no prior programming experience required! PHP 6 Fast & Easy Web Development provides a step-by-step, learn-by-example path to learning through easy-to-understand language and illustrations. Unlike the verbose text-only chapters found in most programming books, the Fast & Easy Web Development style appeals to users who are new to PHP, or to programming in general. The first three chapters are dedicated to getting Apache, MySQL, and PHP up and running on your Windows or Linux machine. You'll be surprised at how simple it is, and how quickly you'll be working. From there, you'll learn how to create multi-part scripts, display dynamic content, work with MySQL databases, restrict access to certain pages of your site using PHP, create contact management systems, and work with XML. After completing this book, you will have a strong foundation in the basics of Web-based technologies and application design, and will be prepared to learn more advanced topics and programming methods.

Special Offers and Product Promotions

  • Buy $50 in qualifying physical textbooks, get $5 in Amazon MP3 Credit. Here's how (restrictions apply)

Frequently Bought Together

Customers buy this book with Modern Database Management (10th Edition) $136.75

PHP 6 Fast and Easy Web Development + Modern Database Management (10th Edition)
Price For Both: $157.25

Show availability and shipping details

  • This item: PHP 6 Fast and Easy Web Development

    In Stock.
    Ships from and sold by Amazon.com.
    Eligible for FREE Super Saver Shipping on orders over $25. Details

  • Modern Database Management (10th Edition)

    In Stock.
    Ships from and sold by Amazon.com.
    This item ships for FREE with Super Saver Shipping. Details



Product Details

  • Paperback: 564 pages
  • Publisher: Course Technology PTR; 1 edition (January 25, 2008)
  • Language: English
  • ISBN-10: 1598634712
  • ISBN-13: 978-1598634716
  • Product Dimensions: 9.1 x 7.4 x 1.5 inches
  • Shipping Weight: 2.5 pounds (View shipping rates and policies)
  • Average Customer Review: 2.3 out of 5 stars  See all reviews (12 customer reviews)
  • Amazon Best Sellers Rank: #225,315 in Books (See Top 100 in Books)

More About the Author

Discover books, learn about writers, read author blogs, and more.

 

Customer Reviews

12 Reviews
5 star:
 (2)
4 star:
 (1)
3 star:
 (1)
2 star:
 (3)
1 star:
 (5)
 
 
 
 
 
Average Customer Review
2.3 out of 5 stars (12 customer reviews)
 
 
 
 
Share your thoughts with other customers:
Most Helpful Customer Reviews

23 of 24 people found the following review helpful:
1.0 out of 5 stars 533 pages of horrible PHP and 31 pages of index, September 27, 2008
By 
This review is from: PHP 6 Fast and Easy Web Development (Paperback)
I picked this book up at my local library since it was the first PHP 6 book they carried. I have to say, I completely agree with Michael Diamond's review. This book is why PHP code and PHP coders have a bad name. I would absolutely not hire someone who wrote any code like the examples in the book. The book is full of examples of how to make completely broken, utterly insecure and just downright awful PHP scripts. Throughout the book, examples take user input directly from $_POST or other user provided variables and either call functions provided in the variable, use the variable directly in SQL.

If the code could throw a warning, it is often preceded with an @ sign, which in PHP just suppresses the warning. Rather than show or explain to the reader how to either prevent the warnings from appearing, checking code to make sure the values passed to the function won't cause a warning or any of the other correct, standard, and not dangerous ways of preventing warnings from showing to the user, it just includes the @ sign with no explanation.

Throughout the book I don't recall seeing a single place where array variables are accessed correctly. For example,
if ($_SESSION[valid] != 'Yes') ....

Unless the word valid is a defined constant, PHP will try to find a constant with that name, not find any, issue a notice, and then try to use valid as a string. The correct way to do this check would be
if ($_SESSION['valid'] != 'Yes')...

Additionally, for a book that is supposed to be about PHP 6, very little PHP 6 is actually discussed anywhere. Unicode will be one of the biggest additions to the PHP 6 code, yet the only place that even mentions unicode is page 68 which has a little 3 line text box. The text in the box mentions that with PHP 6, unicode will be on by default, and then tells you how to disable it by changing an ini setting!

The code examples in this book are aimed at a beginner PHP programmer. However, a beginner PHP programmer may not know how wrongly they are being presented. I urge you, if you are a beginning PHP programmer to avoid this book. If you are a beginning programmer, avoid this book. If you are an intermediate to expert PHP programmer, avoid this book, or borrow it and laugh at the horrible examples of how to not code PHP.

I read a lot of PHP books. Since I've been coding PHP since 1997, there's usually not a lot that I learn from the PHP books. However, I usually also don't have such a strong reaction against a book that I have to immediately write an Amazon review urging others to avoid a book. In fact most of the other PHP books I've read or own do have a lot of good.

Please, stay away from this book. If you don't know PHP already, it will ruin you as a PHP programmer.
Help other customers find the most helpful reviews 
Was this review helpful to you? Yes No


10 of 11 people found the following review helpful:
1.0 out of 5 stars This Book Is The Reason PHP Programmers Have A Bad Name, May 20, 2008
This review is from: PHP 6 Fast and Easy Web Development (Paperback)
This book tries to teach PHP with an illogical ordering, piss poor documentation, no regard to security or standards (it's being published as a book for PHP 6, but still uses HTML from the 1990's).

Most notable to me, however, was the god aweful piece of code found in one of the introductory chapters which, if ever put on a live server, would open up the server to any number of exploits, including access to the system() function. Here is an excerpt:
echo $result = $_POST['func']($_POST['text1']);

Yes, that's right, output the result of a function call the client provides, applied to a parameter the client provides. Absolutely ridiculous.

Now, I haven't read much further than this example (p 110), but even if somewhere later on the authors take the time to discuss security, the fact that they separate the two all but guarentees that the message is not getting across. Please, please please do not purchase this book. I am returning it today, and I encourage those of you who made the same mistake I did to return it as well.

A far, far better book which covers PHP and MySQL in a professional, secure, and yet introductory fasion is PHP and MySQL Web Development (4th Edition) (Developer's Library). This is far and away my favorite programming book, and I promise anyone who is interested in learning PHP or MySQL will benefit from this book.
Help other customers find the most helpful reviews 
Was this review helpful to you? Yes No


3 of 3 people found the following review helpful:
2.0 out of 5 stars Inconsistent and flawed, March 25, 2008
By 
D. Pope (Springfield MO) - See all my reviews
(REAL NAME)   
This review is from: PHP 6 Fast and Easy Web Development (Paperback)
Pro: The text is written in a simple, straightforward style, and contains some good information
Con: Ridiculously small graphics depicting code (hint: just use listings); sample code from publisher's site is broken (perhaps I missed the part about having to debug the authors' examples); broken examples in the text; PHP6 is not stable as of publication of the book but we're set to a hack install thereof, and it appears the instructions on that little endeavor are broken too ("put that .dll in one of those folders you Windows people use").
Suggestion: Try the w3schools site. It's simple yet comprehensive, it's free, and they test their code. Or if you must have a dead tree, try Gosselin's PHP Programming with MySQL -- from what I have seen, it's a much better book.
Help other customers find the most helpful reviews 
Was this review helpful to you? Yes No

Share your thoughts with other customers: Create your own review
 
 
 
Most Recent Customer Reviews










Only search this product's reviews



Inside This Book (learn more)
First Sentence:
MySQL is the database of choice for a vast majority of Web developers who use PHP, because of its efficiency and ease of use. Read the first page
Key Phrases - Statistically Improbable Phrases (SIPs): (learn more)
primary telephone number, secondary telephone number, secret area, useless sample page, bad login, writing your own functions, web browsers used, exit this script, proper authentication channels, new table data cell, use your own path, instruction terminator, close the while loop, session session starto, close your form, style sheet block, new table row, use the fopen, contact from the list, assume that the method, subscribers table, document root, count desc, base font size, calculation script
Key Phrases - Capitalized Phrases (CAPs): (learn more)
Field Type, Field Name, Address Line, Program Files, Windows Start, View Records, Show Contacts, Send This Form, Postal Code, Apache Group, Microsoft Internet Explorer, Date Acquired, Displaying Records Ordered, Create Table, Configuring Apache, Installation Wizard, Sender's Name, Sender's E-Mail, Apache Web, Contact Deleted, Try Again, Total Accesses Tracked, Add Another, Hello World, Configuration Wizard
Browse Sample Pages:
Front Cover | Table of Contents | First Pages | Index | Back Cover | Surprise Me!
Search Inside This Book:

What Other Items Do Customers Buy After Viewing This Item?


Tags Customers Associate with This Product

 (What's this?)
Click on a tag to find related items, discussions, and people.
 
(7)
(3)

Your tags: Add your first tag
 

Customer Discussions

This product's forum
Discussion Replies Latest Post
No discussions yet

Ask questions, Share opinions, Gain insight
Start a new discussion
Topic:
First post:
Prompts for sign-in
 


Active discussions in related forums
Search Customer Discussions
Search all Amazon discussions
   
Related forums



So You'd Like to...



Look for Similar Items by Category


Look for Similar Items by Subject