Customer Reviews


12 Reviews
5 star:
 (3)
4 star:    (0)
3 star:
 (4)
2 star:
 (3)
1 star:
 (2)
 
 
 
 
 
Average Customer Review
Share your thoughts with other customers
Create your own review
 
 
Only search this product's reviews

The most helpful favorable review
The most helpful critical review


19 of 21 people found the following review helpful
5.0 out of 5 stars Awesome PHP for Beginners and Beyond
PHP has been the most popular server-side web developer language for years now. There are more websites created with PHP than any other programming language (more than ASP.NET, Java, etc.). That is probably why there are tons of PHP books from beginner to advanced on the market today.

I have a few PHP books and looked over lots of others online but so many...
Published on October 29, 2009 by Frank Stepanski

versus
16 of 18 people found the following review helpful
3.0 out of 5 stars This book needs a lot of editing.
It's clear from reading this book that edits were made after the initial submission. Some of the code doesn't work or doesn't match the author's "official" code sample for the chapter. I've read enough programming books to expect these kinds of problems but it's inexcusable for a book that targets ABSOLUTE BEGINNERS. Many of the errors I've found could have been caught...
Published on December 15, 2009 by Original Elvis


‹ Previous | 1 2 | Next ›
Most Helpful First | Newest First

19 of 21 people found the following review helpful
5.0 out of 5 stars Awesome PHP for Beginners and Beyond, October 29, 2009
This review is from: PHP for Absolute Beginners (Expert's Voice in Open Source) (Paperback)
PHP has been the most popular server-side web developer language for years now. There are more websites created with PHP than any other programming language (more than ASP.NET, Java, etc.). That is probably why there are tons of PHP books from beginner to advanced on the market today.

I have a few PHP books and looked over lots of others online but so many have fell short in my opinion. Either they are way too basic and cover little tidbits and little examples. Thats all well and good for just learning the basics of the language but then what?

After you learn the basics of the PHP syntax (variables, conditional statements, loops, functions, object and connecting to MySQL) then what?

Well, normally most will try and look for an intermediate-advanced book, but do know what happens then? You find the book teaches more advanced topics which may or not be of help to you because you really havent fully understood how to use the basics yet.

I have taught lots of beginner to intermediate classes on PHP, ASP.NET, JavaScript and such and I find students dont fully know how to take what they have learned and put into practice. How do we solve this problem?

This book does. This is the only book i've read in PHP (if not any other programming web langauge), that after it explains the syntax basics with some small little examples, it then shows the reader how to take what they have learned into developing a real world example.

This book shows its readers how to build a working blog site. Of course its not a WordPress clone, but its a useable website that can be expanded. It is actually useful web application. Brilliant!

I have started to implement this book on my PHP classes I will teach next semester. I wish this book was written years ago.

A must buy for anybody who wants to either learn the basics of PHP, or a current PHP devloper who wants to learn how to use PHP the right way and learn to develop a real PHP web application.
Help other customers find the most helpful reviews 
Was this review helpful to you? Yes No


16 of 18 people found the following review helpful
3.0 out of 5 stars This book needs a lot of editing., December 15, 2009
This review is from: PHP for Absolute Beginners (Expert's Voice in Open Source) (Paperback)
It's clear from reading this book that edits were made after the initial submission. Some of the code doesn't work or doesn't match the author's "official" code sample for the chapter. I've read enough programming books to expect these kinds of problems but it's inexcusable for a book that targets ABSOLUTE BEGINNERS. Many of the errors I've found could have been caught in editing if the proof reader entered the program as described in the book.

For example, in Chapter 5 the author provides a Cascading Style Sheet with the caveat that this isn't a book on HTML/CSS and the user should type the text as displayed. Detailed instructions are provided for including the style sheet in the project. Unfortunately the href for the style sheet - "/css/default.css" - is wrong and it should be "/simple_blog/css/default.css". As a result, the style sheet isn't used and the actual browser output doesn't match what's displayed in the book.

In Chapter 3, page 90 the author feeds the result of the trim() function to the empty() function as part of a conditional check - if(!empty(trim($_POST['username']))). This code returns a fatal error because empty() will only check variables. Again, typing the code as displayed in the book would have caught the error.

In Chapter 7 on page 200 there's a custom confirmDelete() function that doesn't work and isn't part of the author's official code sample. Did anybody test the code before putting it in the book?

I'm giving PHP for Absolute Beginners 3 stars because the editing was sloppy. If the errors are corrected I would give it an additional star. The author provides a complete sample application and reviews all the pieces of the program. That's more than you'd get from a Software Development Kit sample. He discusses using XAMPP for PHP development which is a great suggestion for starting users. There are some wrinkles when installing & configuring XAMPP which would have been nice if the book had taken the time to go over it. I had to spend an afternoon reading the ApacheFriends forums to solve my problems.
Help other customers find the most helpful reviews 
Was this review helpful to you? Yes No


9 of 9 people found the following review helpful
3.0 out of 5 stars A review from a REAL absolute beginner in PHP, April 7, 2010
By 
Keeva Cox (Dallas, TX USA) - See all my reviews
Amazon Verified Purchase(What's this?)
This review is from: PHP for Absolute Beginners (Expert's Voice in Open Source) (Paperback)
I am an absolute beginner in PHP. I have never coded anything from scratch in PHP. In fact, I don't have much coding experience at all aside from HTML. The most experience I have in PHP is in wading through thousands of lines of code to copy/paste some mods to an open-source forum program I have on one of my websites.

Being an absolute beginner in PHP, I give the book 3 stars. Here's why:

The author glosses over theory (in some instances, he just does away with it all together) in order to hurry up and get to the part of the book where you code your own blog. That's fine if all you want to be able to do with PHP is code your own simple blog. However, if you're like me and would actually like to be able to code something other than a blog after you read this book, you NEED theory. There are several different ways you can code things to get the same output. You need to know the hows and whys of them all in order to choose the best coding method for your project. Otherwise, you run the risk of creating a buggy program and spending hundreds of hours and countless frustrations on a project that you'll ultimately have to scrap because it wasn't coded properly in the first place.

There is no Glossary. Dozens of new terms and concepts get thrown at you within the first two chapters of the book, most of which are poorly explained (if they are even explained at all). A glossary at the back of the book would have allowed the author to explain them in detail to true beginners in PHP without taking up space within the chapters themselves. Without it, the first couple of chapters can be a bit overwhelming.

There are errors in the test code. To me, this is perhaps the biggest flaw this book has. Even during the first few chapters, you are encouraged to write the test code out for yourself, save it, view what you've just created, and compare it to the example in the book. I spent nearly an hour in frustration over a section of code that was giving me nothing but errors, the entire time wondering what I was doing wrong. Fed up and discouraged, I finally decided to move on. Several pages later, after having read about a new concept, I discovered that the reason why I got nothing but errors before was because one line in the test code was wrong. In a book that is primarily teaching PHP through example codes, having even one line of coding wrong is unfathomable.

The good thing about this book is it DOES get you coding right away. It's encouraging to see code that you've written (even from examples) work. It's even more gratifying playing around with the example code on your own, changing different variables, to see how it changes the final output. Because you're coding a simple blog, you learn about databases and how PHP interacts with MySQL, something that is very valuable in the age of dynamic websites.

All in all, this book is worth the read if you'd rather code a sample project before starting off on your own coding journey. If you are a true beginner in PHP, be prepared to struggle a bit if you don't purchase a separate book on PHP theory or research it online before starting this one.
Help other customers find the most helpful reviews 
Was this review helpful to you? Yes No


5 of 5 people found the following review helpful
1.0 out of 5 stars FULL OF MISTAKES - drove me crazy, December 1, 2010
This review is from: PHP for Absolute Beginners (Expert's Voice in Open Source) (Paperback)
Anyone who gave this book a five star review didn't do anything more than gloss over it and rate the overall intentions of the author. As if learning how to program isn't hard enough, you're up against:

1. grammatical errors (which increase in frequency as the book progresses)
2. major code errors!
3. INFURIATING program inconsistencies (i.e. In ch5 you build a simple blog with the author. In ch6 the author wants you add functionality to the blog you built in ch5, but now he starts telling you to add to code that we never even wrote in the first place! He's telling you to change the previous code [which doesn't exist] to the new code, which you are hopefully resourceful enough to realize on your own by this point in the book... IT WON'T WORK WITH THE PROGRAM HE HAD YOU WRITE!)
4. Learning HTML on your own (there's not even a refresher in this book, you just have to know HTML or come back when you do)
5. Learning CSS on your own (no explanation at all on what this is... you just enter in the authors magic words and suddenly page looks right!)
6. Learning programming methodology on your own (search for Stanford University's youtube course on the subject and learned like crazy, then come back to this book and it will kind of make sense if you can translate the concepts on your own)
7. Learning all about .htaccess on your own (good luck beginners, much less absolute beginners, cause the explanation is nill)
8. Learning how the internet and web development actually works on your own.
9. Any error in your code and won't know if it's your fault or if you've simply been taught wrong... it's up to you to figure out who's gone wrong and where! SERIOUSLY

As it turns out, little did I know (nor did the cover or contents tell me), HTML is a pre-requisite. You should already be fluent in HTML. I'm sorry, but I wasn't quite an absolute beginner and I got my brain handed to me on a platter with this. The author introduces one concept, explaining it well, and then before you know it he's throwing another concept out there that you've never even heard before. You read on, hoping for an explanation that never comes. Solution = google + patience & suffering.

Somebody was in a BIG rush to get this book out. I have never seen such blatantly absent proofreading and editing.

That being said, I am learning PHP from this book. Perhaps the best teacher is the experience of not being able to trust the author's code. Hopefully people will figure this out on their own like I did instead of thinking their just not getting it! Giving up was not an option for me so I put the book down and went and learned HTML. I came back and learned a little more PHP and then found out that he wasn't going to teach me why he was doing what he was doing or what a ton of different words he was using were... so I went and took 8 hours of programming methodology at Stanford on YouTube! I came back and learned more PHP until I had to know what the heck he was doing with all this CSS, where I took a break and went to have a look at that. Then I came back and learned a tiny bit about databases from this book and then... well, you get the point. But if you have that level of perserverence, you can learn PHP like I did from this guy. Otherwise you will need to be familiar with programming already, not be a beginner!
Help other customers find the most helpful reviews 
Was this review helpful to you? Yes No


2 of 2 people found the following review helpful
2.0 out of 5 stars For "PHP" it is quite a letdown, January 4, 2011
This review is from: PHP for Absolute Beginners (Expert's Voice in Open Source) (Paperback)
To call this book a beginner's guide to "PHP" is rather like calling a book on how to use FrontPage a beginner's guide to "HTML"

It places far too much emphasis on the use of developer kits/interfaces.
There is a good dose of PHP code as well, but it does not start there, nor does it focus on it. So if you are looking to learn PHP for itself - regardless of the development environment, this is Not a starting place!
Help other customers find the most helpful reviews 
Was this review helpful to you? Yes No


1 of 1 people found the following review helpful
3.0 out of 5 stars Kind of boring, November 25, 2010
Amazon Verified Purchase(What's this?)
This review is from: PHP for Absolute Beginners (Expert's Voice in Open Source) (Paperback)
I found this book somehow boring: it does a good intro for the very beginners but then -let's say from chapter 6 on- it's a matter of bare copying his code without any significant learning in terms of new functions or techniques.
There are lots of wasted pages: every time the author wants to show a change he copies the whole code. It's a good way to show the differences but in this book this happens too much!
Chapters 7 and 8 introduce just a couple of new concepts, nothing else.
Still I think it's a good introduction. Not the best, but fine. Three stars.
Help other customers find the most helpful reviews 
Was this review helpful to you? Yes No


1.0 out of 5 stars See review "FULL OF MISTAKES" by jdhadwin, November 10, 2011
Amazon Verified Purchase(What's this?)
This review is from: PHP for Absolute Beginners (Expert's Voice in Open Source) (Paperback)
I just wanted to echo the sentiments of the referenced review, and further down weight the rating of this publication. This book is not worthy of 3 stars, let alone 5.

The errors in this text build on themselves, making them particularly complex to debug for a beginner. Caveat emptor.
Help other customers find the most helpful reviews 
Was this review helpful to you? Yes No


2.0 out of 5 stars Awful - Dont waste your money, August 16, 2011
By 
A. Hussain (Dallas, Texas) - See all my reviews
(REAL NAME)   
This review is from: PHP for Absolute Beginners (Expert's Voice in Open Source) (Paperback)
As other reviewers have mentioned, this book is full of programming errors, thus definitely not a book for Absolute Beginners. I worked on the examples and finally gave up in Chapter 7 as it became too frustrating to continue with this book.
Help other customers find the most helpful reviews 
Was this review helpful to you? Yes No


2.0 out of 5 stars Frustratingly error-prone, January 29, 2011
This review is from: PHP for Absolute Beginners (Expert's Voice in Open Source) (Paperback)
Just check out jdhadwin's review for most of my thoughts. He really nailed the shortcomings of this one. The book has good intentions, but you can't trust the code examples. This leads to you spending more time doing outside research than actually learning from the book. I guess that's one way to learn, but I could have done that without paying for this book.
Help other customers find the most helpful reviews 
Was this review helpful to you? Yes No


3.0 out of 5 stars Full of editing errors, June 2, 2010
This review is from: PHP for Absolute Beginners (Expert's Voice in Open Source) (Paperback)
This book needs to be revised and test the codes that are provided. I had a hard time figuring out where were the errors. Well that's the way one can learn right? But it is not for absolute beginners because they would get confused by this book very easily. It doesn't really explains some things and doesn't say why he does what he does. The author uses some methods and scripts that needs explanation.
Help other customers find the most helpful reviews 
Was this review helpful to you? Yes No


‹ Previous | 1 2 | Next ›
Most Helpful First | Newest First

This product

PHP for Absolute Beginners (Expert's Voice in Open Source)
PHP for Absolute Beginners (Expert's Voice in Open Source) by Jason Lengstorf (Paperback - October 15, 2009)
$34.99 $23.09
In Stock
Add to cart Add to wishlist