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…
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…
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…
Numeric Data Types: INT (Integer): Int data type represents an integer of normal size. So simply it can used to store numeric value. There are…
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…
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…
We already learned about variables, but there are some Readymade or predefined keywords in PHP that can be used without you having to create them…
When working in any programming language, dealing with dates and time is a simple task. That is, until time zones have to be supported. PHP’s…