Does we can find the browser capabilities in PHP
What is Exception Handling in PHP ?
Exception handling in php  is used to modify the normal flow of code execution if a specified error occurs. When an exception is given , the following  code will not be executed, and PHP will try to find the appropriate “catch” block. If an exception is not caught, a fatal error will be displayed.
How To Use Ternary Operator Instead Of if else Condition in php
Instead of writing long lines for if condition we can short it into a single line. Here we are using ternary operator as a short-hand method of if-else condition in PHP.
Special functions in PHP
Lets discuss some special functions in PHP. In PHP, we can able TO define some special functions that will be called automatically. Those functions not required function call to execute the code inside these functions.
Simple HTTP and REST
Callbacks also supports simple HTTP and Rest Client for Promise based units!
Open Source Social Network
Open Source Social Network (OSSN) is social networking software written in PHP. You can use it to create a social media website and to help your members establish social relationships with people who share similar professional or personal interests. It is available in 16 international languages.
PHP debugger
Tracy Library is a useful tool for everyday PHP programmers. It helps you: Quickly detect and correct errors Log errors Dump variables Measure the execution time of scripts / queries See Memory Consumption
Google Recaptcha in CodeIgniter
It is one of the major discussed question, how we can use google recaptcha in codeigniter.First we should need a google account to start. Login the corresponding gmail and access https://www.google.com/recaptcha/admin from your browser. Next you have to register the domain. After that you will get a site key and secret key. Herecomes the our […]