Why does php need server?
No Answer is Posted For this Question
Be the First to Post Answer
What is the difference between "echo" and "print" in php?
what is pear in php in brief ?
Explain the difference between urlencode and urldecode?
How to return ascii value of character in php?
How to install PHP with --mcrypt and --mhash?
How can you access a COM object from a PHP page?
What is final keyword in php?
How can you make a connection with mysql server using php?
How do I stop a php script?
What are the difference between include_once & Require_once?
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
What is framework in php?