Programming PHP: Creating Dynamic Web Pages
Original price was: $65.99.$36.49Current price is: $36.49.
Price: $65.99 - $36.49
(as of Nov 20, 2024 21:48:11 UTC – Details)
Why is PHP the most widely used programming language on the web? This updated edition teaches everything you need to know to create effective web applications using the latest features in PHP 7.4. You’ll start with the big picture and then dive into language syntax, programming techniques, and other details, using examples that illustrate both correct usage and common idioms.
If you have a working knowledge of HTML, authors Kevin Tatroe and Peter MacIntyre provide many style tips and practical programming advice in a clear and concise manner to help you become a top-notch PHP programmer. Understand what’s possible when you use PHP programsLearn language fundamentals, including data types, variables, operators, and flow control statementsExplore functions, strings, arrays, and objectsApply common web application techniques, such as form processing, data validation, session tracking, and cookiesInteract with relational databases like MySQL or NoSQL databases such as MongoDBGenerate dynamic images, create PDF files, and parse XML filesLearn secure scripts, error handling, performance tuning, and other advanced topicsGet a quick reference to PHP core functions and standard extensions
From the brand
Your partner in learning
Sharing the knowledge of experts
O’Reilly’s mission is to change the world by sharing the knowledge of innovators. For over 40 years, we’ve inspired companies and individuals to do new things (and do them better) by providing the skills and understanding that are necessary for success.
Our customers are hungry to build the innovations that propel the world forward. And we help them do just that.
Publisher : O’Reilly Media; 4th edition (April 21, 2020)
Language : English
Paperback : 542 pages
ISBN-10 : 1492054135
ISBN-13 : 978-1492054139
Item Weight : 1.89 pounds
Dimensions : 7 x 1.1 x 9.19 inches
6 reviews for Programming PHP: Creating Dynamic Web Pages
Add a review
You must be logged in to post a review.
Original price was: $65.99.$36.49Current price is: $36.49.
Dusk –
Solid book on the fundamentals on php
I mainly got this book as a resource for a recent job offering with absolutely no experience writing within the language, and believed that this would be a good resource to be able to utilize for this job. However there are some caveats to this book, that I feel are mainly due to the structure of my work that ends up having me not really utilizing it as much when going into the later chapters, as most of the solution are handled much more by framework basis.This book, is a solid book in my opinion of being able to get someone who is brand new to programming up and running, with a wide variety of topics to explore, and in that retrospect, in my opinion if you need a book that is a solid foundation to learn a variety of topics, then this is a good start for you to explore, as it will help you to learn terminology that you will need to know later when exploring frameworks.However, in the sense of the work that I mainly due being through frameworks, what I was mainly hoping from this book is to describe best practices of the many different flavors of php, which it does do in some retrospect, but for most of the topics in this book I hardly ever touch, as they are rarely ever needed. I do still feel this is a solid resource to understand the language as a whole of what it can do, but if you are looking for a book that can describe at a better level best practices, you may need to look elsewhere to cover it.
A E –
There are no page numbers
Be aware that there are no page numbers for this version of the book, this can make it difficult for school assignments that may refer by page number specifically.
@GroupOfFour –
Pretty good, but not perfect
If you’re looking for a book to get a better understanding of PHP and dynamic web sites, this book is pretty good. It doesn’t go into deep detail, so that is a bit frustrating because there are some parts that are glossed over, rather than the deep in-depth details that a newbee to dynamic web site development needs.
TC –
Good book but…
Some chapters were difficult to understand. This is not a book for beginners. This is so much advanced for me.
Gabriela Leal –
I liked it, itâs a good book for someone who wants to learn PHP. However, they donât talk about any low level details, explain how some functions work under the hood, whatâs the complexity or give tips on how to optimize code (and I kinda expected that). Not really a problem, but some other people might need to know that
MartinH –
There’s lots of good information in this book, but as it claims to cover PHP 7.4 many of the language improvements appear to be missing. For instance:There’s no mention that you can create arrays with the square bracket syntax: $nums = [1, 2, 3, 4] or $person = [‘name’ => ‘martin’]There’s no mention of variadic function parameters: public function sum(…$args){}So I wonder what else is missing?Also missing are things most PHP developers take for granted nowadays:Composer – PHPs defacto package manager.AutoloadingThe various frameworks that exist (Symfony, Laravel etc.)This feels like a very lazy update to the previous editions.