PHP is having DOM functionality for parsing webpage by considering the HTML content of the webpage as XML data.
If you assign the $data with the HTML content of the webpage, below code will load the HTML content in DOM object.
My PHP Resources Bookmark List on Diigo. I am a beginner at PHP, so right now, most of these are targeting to a very basic level, most useful for other beginners.
Consider below url.
http://site.com/showtopic.php?id=10
By seeing this url we can understand that this site is developed using php, and we can understand coding/database table upto some extent. For example, if you change id value to some invalid value instead of 10 we will get some error message/query which may give some details about database table.
The PHP PEAR also known as PHP Extension and Application Repository, is a repository built especially for PHP software code. In this tutorial, you will learn how to install the PHP PEAR on the linux server. Install PEAR allows you to install various extensions without compiling the source packages.
"Limb3 is an OpenSource(LGPL) L ibrary of I nterdependent M odules and B locks mostly aimed for rapid web application prototyping and development with PHP5."
Doctrine is an object relational mapper (ORM) for PHP 5.2.3+ that sits on top of a powerful database abstraction layer (DBAL). One of its key features is the option to write database queries in a proprietary object oriented SQL dialect called Doctrine Query Language (DQL), inspired by Hibernates HQL. This provides developers with a powerful alternative to SQL that maintains flexibility without requiring unnecessary code duplication.
Spoon is a PHP5 library that stands for speed, both in page execution and coding agility. Because of it's clear and logical structure, it offers a very small learning curve for both the experienced and not-so-experienced developer.
Spoon provides a well documented library with a large collection of classes that you can use while building the next Web 2.0 application.
DooPHP is a rapid development framework for PHP using commonly known design patterns like MVC and ORM, reduces development costs and helps developers write less code
We used to get below error when using header() in our php code.\n\n\nWarning: Cannot modify header information - headers already sent by (output started at...
Use social media link codes to dramatically improve your traffic and search engine ranking. The article is a step by step guide to link sharing on social media websites using PHP
PHP is having various functions for debugging a variable. Seeing values stored in an array or in any other object is important for doing any troubleshooting in a code.
PHP for loop can be used to traverse set of code for the specified number of times. It should be used if number of iteration is known otherwise use while loop. Syntax Flowchart Example Output: We can use for loop inside for loop in PHP, it is known as nested for loop.