Tagged: X Php Interview Questions and Answers

Php Interview Questions and Answers -10

Who is the father of PHP and what is the current version of PHP and MYSQL? Rasmus Lerdorf. PHP 5.1. Beta MySQL 5.0 In how many ways we can retrieve data in the result...

Php Interview Questions and Answers -09

How can we know that a session is started or not? A session starts by session_start() function. This session_start() is always declared in header portion. it always declares first. then we write session_register(). What...

Php Interview Questions and Answers -08

Give the syntax of REVOKE commands? The generic syntax for revoke is as following REVOKE [rights] on [database] FROM [username@hostname] Now rights can be: a) ALL privileges b) Combination of CREATE, DROP, SELECT, INSERT,...

Php Interview Questions and Answers -07

How can we destroy the session, how can we unset the variable of a session? session_unregister() – Unregister a global variable from the current session session_unset() – Free all session variables What are the...