PHP Basic Interview Questions and Answers for Web Developers - Part 1
PHP Basic Interview Questions and Answers for Web Developers - Part 1 In this article on PHP Interview Questions, I have compiled a list of very basic and fundamental PHP interview questions and answers for web developers. Every PHP web developer should know these basic questions of PHP. So, if you are preparing for any interview in PHP development, you should go through the following list of PHP basic interview questions. There PHP questions are based on very simple PHP concepts like basic introduction to PHP, Sessions and Cookies in PHP, Input / Output in PHP, Error Management in PHP, MySQL database connectivity in PHP, SQL Injection in PHP, Encryption and Decryption in PHP, Sending Emails in PHP, datatypes in PHP and many more. Lets have a look... 1. What is PHP? PHP is a server side scripting object oriented language commonly used for web applications. 2. What is the use of "echo" in php? It is used to print a data in the webpage. Example: <?php echo 'Hi'; ?...