Products related to PHP:
-
Modern PHP
PHP is experiencing a renaissance, though it may be difficult to tell with all of the outdated PHP tutorials online.With this practical guide, you'll learn how PHP has become a full-featured, mature language with object-orientation, namespaces, and a growing collection of reusable component libraries.Author Josh Lockhart-creator of PHP The Right Way, a popular initiative to encourage PHP best practices-reveals these new language features in action.You'll learn best practices for application architecture and planning, databases, security, testing, debugging, and deployment.If you have a basic understanding of PHP and want to bolster your skills, this is your book.Learn modern PHP features, such as namespaces, traits, generators, and closures Discover how to find, use, and create PHP components Follow best practices for application security, working with databases, errors and exceptions, and more Learn tools and techniques for deploying, tuning, testing, and profiling your PHP applications Explore Facebook's HVVM and Hack language implementations-and how they affect modern PHP Build a local development environment that closely matches your production server
Price: 23.99 £ | Shipping*: 3.99 £ -
PHP in easy steps : Updated for PHP 8
PHP in easy steps, 4th edition demonstrates every aspect of the language you’ll need to produce professional web programming results.Its examples provide clear syntax-highlighted code, which is freely downloadable, showing PHP language basics including variables, arrays, logic, looping, functions and classes. Install a free web server and the PHP interpreter to create an environment in which you can produce your own data-driven web pages. Write PHP server-side scripts; master PHP operators and control structures; process HTML form data; get cookies and session data; access Web Services APIs over HTTP... and much more! PHP in easy steps, 4th edition is ideal for PHP newbies who want to quickly learn the fundamentals of server-side programming with PHP and create interactive web pages.Also, useful for PHP pros who want to grasp the new PHP 8 features and achieve optimum performance!Updated for PHP 8.
Price: 11.99 £ | Shipping*: 3.99 £ -
PHP Essentials: Deep dive into the Principles of PHP Alpha Academy Code
PHP Essentials: Deep dive into the Principles of PHP Unlock the power of PHP with "PHP Essentials: Deep Dive into the Principles of PHP." This comprehensive course is designed for developers at all levels, offering a thorough exploration of PHP's core principles. Gain hands-on experience with essential PHP functions, syntax, and best practices to build dynamic, data-driven websites and applications. With practical coding examples and in-depth modules, you will master PHP's foundational concep...
Price: 10.59 € | Shipping*: 0.00 GBP € -
Pro PHP Application Performance : Tuning PHP Web Projects for Maximum Performance
Pro PHP Application Performance will help you understand all the technologies and components which play a role in how well your applications run.When seconds can mean the difference between retaining a user and losing a user, it's important for all of us to have optimization as part of our project roadmap.But what components within your application should you analyze?How should you optimize? And how can you measure how well your application is performing?These are some of the questions that are answered in this book. Along the way you will also learn the "why" of optimizing.You’ll discover why you should optimize a specific component, why selecting one function over another is beneficial, and how to find and use the optimization tools available to the open source community.You’ll also learn how to deploy caching software as well as web server software.Pro PHP Application Performance will also teach you more advanced techniques, such as: • Using Xdebug to profile functions that are not running as efficiently as possible. • Comparing opcode executed by different PHP functions to narrow the search for functions that run efficiently. • Using strace to analyze Apache while your application is served to the user. Once you complete this book you will have a complete sense of where to start optimizing and, most importantly, have the tools which allow you to continue optimizing in other PHP applications going forward.
Price: 39.99 £ | Shipping*: 0.00 £
-
How can I send an email with PHP code using PHP?
To send an email with PHP code using PHP, you can use the built-in `mail()` function. This function takes parameters such as the recipient's email address, subject, message, and additional headers. Here is an example code snippet to send an email using PHP: ```php $to = "recipient@example.com"; $subject = "Test Email"; $message = "This is a test email sent using PHP."; $headers = "From: sender@example.com"; // Send email mail($to, $subject, $message, $headers); ``` Make sure to replace the email addresses with the appropriate ones and customize the message and subject as needed. Additionally, ensure that your server is properly configured to send emails.
-
How can I pack all PHP commands into one big PHP command?
You can pack all PHP commands into one big PHP command by using a combination of PHP functions, control structures, and concatenation. You can use functions like echo, print, and variable assignment to output the desired results. Additionally, you can use control structures like if-else statements and loops to control the flow of the commands. Finally, you can concatenate strings and variables to combine multiple commands into one big PHP command. By using these techniques, you can effectively pack all PHP commands into a single PHP script.
-
How can you load a PHP file into a DIV using PHP?
You cannot directly load a PHP file into a DIV using PHP alone. However, you can use AJAX to achieve this. You can create an AJAX request to the PHP file and then load the response into the DIV using JavaScript. This way, you can dynamically load the content of a PHP file into a specific DIV on your webpage.
-
Who is online with PHP?
Online status with PHP can be determined by tracking user activity through sessions or database entries. By setting a timestamp when a user last accessed the site and checking it against the current time, you can determine if they are online. This information can be used to display a list of online users or to show a status indicator next to their profile.
Similar search terms for PHP:
-
PHP Web Services 2e
Whether you're sharing data between two internal systems or building an API so that users can access their data, this practical guide has everything you need to build APIs with PHP.Author Lorna Jane Mitchell provides lots of hands-on code samples, real-world examples, and advice based on her extensive experience to guide you through the process-from the underlying theory to methods for making your service robust.You'll learn how to use this language to work with JSON, XML, and other web service technologies.This updated second edition includes new tools and features that reflect PHP updates and changes on the Web.Explore HTTP, from the request/response cycle to its verbs, headers, and cookiesWork with and publish webhooks-user-defined HTTP callbacksDetermine whether JSON or XML is the best data format for your applicationGet advice for working with RPC, SOAP, and RESTful servicesUse several tools and techniques for debugging HTTP web servicesChoose the service that works best for your application, and learn how to make it robustDocument your API-and learn how to design it to handle errors
Price: 23.99 £ | Shipping*: 3.99 £ -
PHP Unit Pocket Guide
Smart web developers will tell you that the sooner you detect your code mistakes, the quicker you can fix them, and the less the project will cost in the long run.Well, the most efficient way to detect your mistakes in PHP is with PHPUnit, an open source framework that automates unit testing by running a battery of tests as you go.The benefits of PHPUnit are significant, they are: a reduction in the effort required to frequently test code; fewer overall defects; added confidence in your code; and improved relations with your open source teammates.The only problem with this popular testing tool was its lack of documentation-until now, that is.For this, "O'Reilly" went right to the source, as Sebastian Bergmann, the author of "PHPUnit Pocket Guide", also happens to be PHPUnit's creator.This little book brings together hard-to-remember information, syntax, and rules for working with PHPUnit.It also delivers the insight and sage advice that can only come from the technology's creator.The coverage of testing under agile methodologies and Extreme Programming (XP) is also included. The latest in "O'Reilly's" series of handy Pocket Guides, this quick-reference book puts all the answers are right at your fingertips.It's an invaluable companion for anyone interested in testing the PHP code they write for web applications.
Price: 7.99 £ | Shipping*: 3.99 £ -
PHP and MySQL Web Development
PHP and MySQL Web Development, Fifth Edition The definitive guide to building database-driven 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 consistently focuses on real-world applications, even in the introductory chapters.The authors cover important aspects of security and authentication as they relate to building a real-world website and show you how to implement these aspects in PHP and MySQL.They also introduce you to the integration of front-end and back-end technologies by using JavaScript in your application development. The final part of this book describes how to approach real-world projects and takes the reader through the design, planning, and building of several projects, including: User authentication and personalizationWeb-based emailSocial media integrationShopping cart The fifth edition of PHP and MySQL Web Development has been thoroughly updated, revised, and expanded to cover developments in PHP through versions 5.6 and 7, as well as features introduced in recent stable releases of MySQL. Free Access to Web Edition Purchase of this book in any format, electronic or print, includes free access to the corresponding Web Edition.The Web Edition can be viewed on all types of computers and mobile devices with any modern web browser that supports HTML5. Contents at a Glance Part I: Using PHP 1 PHP Crash Course 2 Storing and Retrieving Data 3 Using Arrays 4 String Manipulation and Regular Expressions 5 Reusing Code and Writing Functions 6 Object-Oriented PHP 7 Error and Exception Handling Part II: Using MySQL 8 Designing Your Web Database 9 Creating Your Web Database 10 Working with Your MySQL Database 11 Accessing Your MySQL Database from the Web with PHP 12 Advanced MySQL Administration 13 Advanced MySQL Programming Part III: Web Application Security 14 Web Application Security Risks 15 Building a Secure Web Application 16 Implementing Authentication Methods with PHP Part IV: Advanced PHP Techniques 17 Interacting with the File System and the Server 18 Using Network and Protocol Functions 19 Managing the Date and Time 20 Internationalization and Localization 21 Generating Images 22 Using Session Control in PHP 23 Integrating JavaScript and PHP 24 Other Useful Features Part V: Building Practical PHP and MySQL Projects 25 Using PHP and MySQL for Large Projects 26 Debugging and Logging 27 Building User Authentication and Personalization 28 (PDF with Product Registration) Building a Web-Based Email Client with Laravel Part I 29 (PDF with Product Registration) Building a Web-Based Email Client with Laravel Part II 30 (PDF with Product Registration) Social Media Integration Sharing and Authentication 31 (PDF with Product Registration) Building a Shopping Cart Part VI: Appendix A Installing Apache, PHP, and MySQL
Price: 40.99 £ | Shipping*: 0.00 £ -
Murach's PHP and MySQL (4th Edition)
Price: 60.99 £ | Shipping*: 0.00 £
-
Which language, JavaScript or PHP?
The choice between JavaScript and PHP depends on the specific requirements of the project. JavaScript is primarily used for front-end development, creating interactive and dynamic user interfaces. On the other hand, PHP is a server-side language commonly used for back-end development, handling server-side logic and database interactions. If the project requires client-side interactivity and dynamic user interfaces, JavaScript would be the preferred choice. However, if the project involves server-side processing and database interactions, PHP would be more suitable. In some cases, both languages may be used together to create a full-stack web application.
-
How can you style PHP?
PHP can be styled by embedding HTML within PHP code to create dynamic web pages. This allows for the use of CSS to style the HTML elements within the PHP code. Additionally, PHP frameworks such as Laravel and CodeIgniter provide their own templating engines and styling options to help organize and style PHP code. Lastly, PHP can also be used with front-end frameworks like Bootstrap or Foundation to create responsive and visually appealing web applications.
-
How can one style PHP?
PHP can be styled by separating the PHP code from the HTML code using a templating system like Smarty or Blade. This allows for cleaner and more organized code. Additionally, using CSS to style the HTML elements generated by PHP can help in creating a visually appealing design. It is also important to follow best practices such as using consistent naming conventions, indentation, and comments to make the code more readable and maintainable.
-
What is PHP used for?
PHP is a server-side scripting language primarily used for web development. It is commonly used to create dynamic web pages, interact with databases, and handle forms and cookies. PHP can be embedded within HTML code, making it a versatile tool for building interactive and dynamic websites. Additionally, PHP can be used to create web applications, manage sessions, and perform various server-side tasks.
* All prices are inclusive of VAT and, if applicable, plus shipping costs. The offer information is based on the details provided by the respective shop and is updated through automated processes. Real-time updates do not occur, so deviations can occur in individual cases.