HAPPY BOOKSGIVING
Use code BOOKSGIVING during checkout to save 40%-55% on books and eBooks. Shop now.
Register your product to gain access to bonus material or receive a coupon.
PHP has become even more powerful as a Web development tool with the addition of two new modules -- PHP-GTK and PEAR::DB. Advanced PHP for Web Development fills a void in the PHP book market for an advanced-level book showing how to create complex Web sites. The authors create custom graphics using PHP-GTK to make application interfaces more intuitive to users. They also show how to create Web applications that are database independent -- not relying on MySQL or MS SQL, or Oracleusing the new PEAR::DB module! Through working code examples and applications, Cosentino takes readers through intermediate tasks that will have an impact on the usability of their Web site, including how to create friendlier forms and use different user-authentication themes. Later sections of the book take readers through more complex code examples and applications, so that, by the end of the book, the reader will be armed with the skills (and working code) to create powerful PHP-backed Web sites!
PHP Basics, Part 1: Creating a Scripted Page
PHP Basics, Part 2: Database-Driven Pages
Multiple Database Interaction in PHP 4.1
Preface.
Goal Of This Book.
Who This Book Is For.
Getting The Code.
Acknowledgements.
The Fine Print.
1. PHP Review.
Overview. PHP Syntax. Operators. Arithmetic Operators. Assignment Operators. Comparison Operators. Concatenating Strings. Arrays. If/Then Statements. Switch Statements. For Loops. Foreach Loops. While Loops. Do While Loops. User-defined Functions. Object Oriented Programming With PHP. phpinfo(). Additional Resources.
Introduction to Session Management in PHP4. Initial php.ini Settings For Session Management. On Windows. On Linux. General Considerations. Starting a Session. The Contents of Session Files. Tracking Variables Across Pages During A Session. Unregistering Session Variables. Destroying Sessions. A Simple Session-based Shopping Cart.
Advanced Database Interaction in PHP4. Database Specific Functions In PHP. Connecting To The Database Server. Selecting The Proper Database. Querying The Database To Insert, Read, Or Delete Data. Obtaining The Results Of Your Queries To Present To The User. DBX - PHP Support For Multiple Databases. You can verify the DBX has been correctly installed by using the phpinfo()function and verifying DBX is listed under the configuration section. Enabling DBX in Windows. DBX Functions. BX Functions. Using DBX. Creating Your Own Support For Multiple Databases. Using Pear::DB. Downloading PEAR. Downloading PEAR from CVS. Back To The Basics.
Introduction to Better Forms. Post and Get. Making Forms Friendly. Souping-up the script. Check For Spaces. Check For Minimum Number Of Characters. Add More Error Information. Form-Field Checking. Checking For Valid Email Addresses. Using $HTTP_GET_VARS and $HTTP_POST_VARS. Putting It All Together. Variable Variables.
Introduction. Features Of The Shopping Cart. Simple Shopping Interface. Simple Administration And Management Interfaces. Setting It Up. The Code. cart.sql. cart.php. cart_inc.php. dbmanage.php. admin.php. checkout.php. finishorder.php.
Overview. Opening Files. Reading Files. Closing Files. Putting It To Use. Data Mining. Parsing Large Files.
User Authentication Overview. Generating Passwords. Authenticating Users Against Text Files. Authenticating Users By IP Address. Authenticating Users Using HTTP Authentication. Authenticating Users By Database Query.
Overview. Error Reporting. Types Of Errors In PHP. Error Reporting Settings In php.ini. error_reporting(). php.ini Setting: display_errors. php.ini Settings For Development & Testing. Logging Errors. Custom Error Handlers. Triggering Errors 251. Tracking User Logins.
Introduction. Simple Administration Interface. Setting It Up. The Code. meeting.sql. meeting.php. meeting_inc.php. admin.php.
Overview. Creating An XML Parser. Defining the XML Parser. Defining The Element Handlers. Defining Character Handlers. Starting The Parser. Cleaning Up. Parsing and Transforming XML Documents. Dumping Database Contents Into An XML File.
Overview. The GD Library. Enabling GD support. Enabling GD For Windows. Enabling GD for Linux. Generating Graphics with GD. The Lines and Text. Adding TrueType Font To Your Images. Adding Text To Base Images. Creating Rectangles with GD.
Introduction to PHPGTK. Installing PHPGTK. Before You Install. Installing on Windows. Installing on Linux. Creating Basic GTK Objects. Creating Your First PHPGTK Window. Adding a GTK Button. Modifying Basic Widget Appearance. Text Entry. hbox and vbox. pack_start. Putting It All Together. Dialog Boxes. A Simple PHPGTK Application.
The goal of this book is to help you get a better grasp of PHP, to learn some of the less commonly used features, and to help you build some applications that are useful in your work or hobbies. I hope it gives you some ideas on how to make your own applications easier to code and easier to use.
Who This Book Is ForThis book is for those who have done some basic PHP programming and wish to learn about some of the more advanced techniques to make applications easier to use and easier to program.
I received many emails from across the globe from readers of my first book, Essential PHP for Web Professionals (also published by Prentice Hall), who liked the concise style and ample examples I had provided. I received literally dozens of emails from people who said they had read other PHP programming books, but they didn’t really grasp how PHP worked until they read my book. I can’t tell you how happy that makes me feel. I hope to do the same with this book.
This book is for those of you who are ready to take the next step and learn a little more about PHP. This book isn’t a reference book, nor does it cover every advanced aspect of PHP. It does, however, stretch beyond the basics and introduce some more concepts that can help you with your PHP programming.
Getting the CodeAll of the code for this book is available on the Advance Web Series Web page (www.phptr.com/advancedweb/php).
You can download all of the examples for each chapter on the page.
The Web page will also have any updates or errata, as well as answers to frequently asked questions.