PHP and MySQL Web Development 4th Edition Solution


 


Click the Download button


Book Description:

PHP and MySQL Web Development, Fourth Edition
The definitive guide to building database-drive Web applications with PHP and MySQL

PHP and MySQL are popular open-source technologies that are ideal for quickly developing database-driven Web applications. PHP is a powerful scripting language designed to enable developers to create highly featured Web applications quickly, and MySQL is a fast, reliable database that integrates well with PHP and is suited for dynamic Internet-based applications.

PHP and MySQL Web Development shows how to use these tools together to produce effective, interactive Web applications. It clearly describes the basics of the PHP language, explains how to set up and work with a MySQL database, and then shows how to use PHP to interact with the database and the server.

This practical, hands-on book includes numerous examples that demonstrate common tasks such as authenticating users, constructing a shopping cart, generating PDF documents and images dynamically, sending and managing email, facilitating user discussions, connecting to Web services using XML, and developing Web 2.0 applications with Ajax-based interactivity.



About the Author



Lead Authors

Laura Thomson is a senior software engineer at Mozilla Corporation. She was formerly a principal at both OmniTI and Tangled Web Design, and she has worked for RMIT University and the Boston Consulting Group. She holds a Bachelor of Applied Science (Computer Science) degree and a Bachelor of Engineering (Computer Systems Engineering) degree with honors. 

Luke Welling is a web architect at OmniTI and regularly speaks on open source and web development topics at conferences such as OSCON, ZendCon, MySQLUC, PHPCon, OSDC, and LinuxTag. Prior to joining OmniTI, he worked for the web analytics company Hitwise.com, at the database vendor MySQL AB, and as an independent consultant at Tangled Web Design. He has taught computer science at RMIT University in Melbourne, Australia, and holds a Bachelor of Applied Science (Computer Science) degree.

Contributing Authors

Julie C. Meloni has been developing web-based applications since the Web first saw the light of day and remembers the excitement surrounding the first GUI web browser. She has authored numerous books and articles on web-based programming languages and database topics, including the bestselling Sams Teach Yourself PHP, MySQL and Apache All in One.

Adam DeFields is a consultant specializing in web application development, project management, and instructional design. He lives in Grand Rapids, Michigan where he runs Emanation Systems, LLC, a company he founded in 2002. He has been involved with web development projects using several different technologies, but has developed a strong preference toward PHP/MySQL-based projects.

Marc Wandschneider is a freelance software developer, author, and speaker who travels the globe working on interesting projects. In recent years, a lot of his attention has been focused on writing robust and scalable web applications, and in 2005 he wrote a book called Core Web Application Programming with PHP and MySQL. He was was previously the main developer of the SWiK open source community site. 




Customer Reviews:

This is one of the best overall software books I have ever read.  ”

Nathanael B. Minegar

“ Well written and easy to understand!  ”

Aaron Ross

“ Others have written all there is to say about the contents, this is just about the code: I bought the kindle edition and all the source code is on the CD in the book.  ”

Stephan Wiesner”



Most Helpful Customer Reviews:

Outstanding April 20, 2007

By Nathanael B. Minegar
Format:Paperback

This is one of the best overall software books I have ever read. It is the best PHP and MySQL book I have read so far. The structure of the book, the sequence of the material, and the technical explanations are excellent. It is not overly descriptive of details yet it defines the complex subject material very well. I maintain accounts on 1and1.com and all of the code examples from the book that I have tried so far worked with no problem after I changed file names to .php5. I was able to get the web forum application and the user authentication application up and running within 2 days of getting the book. I have experience in C, C++, and assembly programming but no real web development stuff. Also, I had bought (and returned!) three other books on PHP and MySQL before getting to this one. I am definitley keeping this book. 5 stars all the way!





Decent Beginner Book with Caveats (Beware Kindle!) 
November 11, 2010

By David Louw
Format:Kindle Edition|Verified Purchase

I'm a development manager with a few other languages under his belt who is interested in getting back into some hobby coding. Specifically I'm looking to put together a FaceBook app hosted on Amazon Web Services and from my initial research PHP and MySQL appear to be the way to go.

I was disappointed with this book for three reasons. First, I got the Kindle edition and it lacks the critical source code for the examples. The publisher doesn't provide a way to download this on their site so I had to type in the examples by hand (the Kindle app doesn't allow cut and paste for obvious reasons) but I didn't have the images or the files that weren't listed out in the book.

Second, the book manages to both be too verbose and not go into enough technical depth. This may be fine for an absolute beginner but I'd guess most people have at least some programming background. It was tedious wading through chapters that didn't clearly call out the unique aspects of PHP compared to other languages. The examples were barely adequate and weren't well thought out to reinforce the critical concepts. The most disappointing was the lackluster authentication examples which fall far short of a secure, robust, and usable customer experience.

Finally, the table of contents implies that the book covers software development best practices for large scale PHP web applications. The spartan single chapter on the topic briefly mentions having coding conventions, using source control, limiting the size of your files, doing code reviews, and the importance of testing. Nothing in there is new or useful to anyone that's done any programming before. Now I'm looking around for a book that really covers this subject so I know how to properly set up my source files, do test driven development, employ continuous builds, and so on.

To be fair there are some highlights. The coverage of basic MySQL setup was nice, the chapter on AJAX was a good overview, and the appendices were comprehensive on the setup of PHP and MySQL.

In short, buy this book if you have little programming background. You should plan to read a follow up book to get the real information on how to build web applications of any use.





Perfect Book - Every PHP programmer must have this book! November 20, 2009
By Pule Nong
Format:Paperback|Verified Purchase
PHP and MySQL Web Development (4th Edition)
I am a self taught programmer and I always felt there was more to PHP than i was getting from other PHP books I had.So recently, I embarked on a month long search of a 'good' PHP book. I am glad to tell everyone else that I have finally found that book. This is right here, this book doesn't make assumptions about your programming skills level - It teaches you what is important whether you already know it or not.

I am so pleased with what is in this book that I feel every PHP programmer should go out there and get one for themselves. I give this book 5/5 - Perfect!




Great Prep for Job March 4, 2009

By M. Trotier
Format:Paperback

I have been a php programmer for 9 years. I was not familiar with some of the newer developments i.e. using XML with PHP, e-commerce ...ect. I found this book to be very valueable in preping for a php job. I was able to step thru the books code using my NuSphere phped php debugger and have learned alot in a short period. In regards to the negative reference that "you can find all this stuff on the net". Yes but its not organized and not friendly. Thats why we buy these books, to save time and make learning easier. Highly recommended.



There's a Better Way April 27, 2012

By Travis Parks
Format:Paperback

At first, I thought I was given the wrong impression about this book. I was told it showed how to make large-scale PHP applications, as well as taught the basics. And, in fact, it does. The problem is that many of the "common" practices aren't "best" practices. I worked with PHP when I was in college and ran into a lot of issues involving how to package up reusable code, prevent users from directly requesting pure code files and writing testable code.

It would appear that, after five years, none of these issues have been addressed. The book perfectly describes how to make a modern PHP application. However, it is just teaching another generation of developers the wrong way to build an application. Everything a developer needs to separate HTML generation, business logic and the data layer is available in PHP, but no one takes the time to teach how to do it. 

Newer platforms utilize routing middleware and claim to follow the MVC pattern; these platforms lead to much more scalable and maintainable applications. The book is confused about whether it wants to be yet another introduction to PHP and MySQL or an insider's guide to building realistic architectures. It is neither a beginner's guide, a reference or a best practices book; so what is it? It is a clutter of information. 

It does have many hands-on guides, which will help plenty of people, but I can't say that the code will teach anyone how to do things the right way.