Category Archives: PHP

Common PHP Errors & Fixes

Oct 17, 2013

Working with PHP, we often face few common problem and errors related to PHP script such as white page of syntax error, unexpected errors, header already sent,..

Read more

PHP Interview Questions and Answers

Oct 11, 2013

Hi all today we are going to see in the post is PHP Interview Questions and answers asked during the interview for the job PHP..

Read more

PHP – safe way to hash password

Oct 10, 2013

As we know that password hashing is one of the most basic security considerations that must be made when designing any application that accepts passwords..

Read more

PHP – multi-sort of associative array in

Oct 08, 2013

This is a complete multi-sort example of associative array in PHP. We have first sorted an associative array by values in descending order then sorted..

Read more

Importance and Benefits of PHP Output Buffering

Oct 03, 2013

PHP sends data from server to client/browser as soon as it is ready – this response might be line by line or by code blocks.Output..

Read more

Working with $_POST in PHP

Oct 01, 2013

We use the $_POST function to collect form values sent with method=”post” Information sent from a form with the POST method is invisible to others..

Read more