Skip to content

Unset() function means in php?

The behavior of unset()  inside of a function can vary depending on what type of variable you are attempting to destroy. If a globalized variable… 

Multiple inheritance in PHP?

Inheritance is a well-established programming principle, and PHP makes use of this principle in its object model. This principle will affect the way many classes… 

Data Sending Ways in PHP

There are some certain ways to send your information or data to the PHP page- Using Form Methods – Get & Post Using Cookies &… 

Error Handling in PHP

Error handling is the process of catching errors from the program and then taking appropriate action. Before proceeding for error handling you should get to… 

Working with Images – PHP

We need to create an HTML form that allows you to choose the file to be uploaded. Note: please make sure you have form method… 

Require () and Include () function in PHP

The Include() and require() statements are used to insert codes written in other files, in the flow of  execution. The main of using include and… 

The do-while loop

Difference Between while and do…while Loop: With a while loop, the condition to be evaluated is tested at the beginning of each loop statement, so… 

PHP -Building Blocks

If –else statements: if…else statement – executes set of codes if a condition is true and another code if the condition is false Within a…