What is the difference between get and post method in php?
No Answer is Posted For this Question
Be the First to Post Answer
What is isset function in php?
What is the difference between query and question?
Does php support overloading?
Explain the changes in php versions?
Why namespace is used in php?
Tell me what are the different types of errors in php?
class Database { public static $_instance; public static function getInstance() { if(!isset(self::$_instance)) self::$_instance = new Database(DB_SERVER, DB_USER, DB_PASS, DB_NAME); print_r(self::$_instance); return self::$_instance; } } can any one explain "self::$_instance = new Database(DB_SERVER, DB_USER, DB_PASS, DB_NAME);" this line
Tell me how can I display text with a php script?
How to generate a form?
Which of the following represents the proper way to set a session variable? Answer: a. $_SESSION['foo'] = 'bar'; b. session_start(); c. session_set_save_handler ('myopen', 'myclose', 'myread', 'mywrite', 'mydelete', 'mygarbage'); d. $foo = $_SESSION['foo']; 2.When administering MySQL, you should make the data directory accessible via the operating system 3.which statement can be used to determine how the optimizer resolves a query
Can I use php in html?
Distinguish between urlencode and urldecode?