Explain me what is the use of 'print' in php?
No Answer is Posted For this Question
Be the First to Post Answer
Suppose a variable may passed to other page using any of get,post,session,cookie methods and u want to retrive that variable value . what is the syntax?
How to find the position of the first occurrence of a substring in a string?
What is php array function?
Tell me what is the use of explode() function?
How cookies are transported from servers to browsers?
What's the diff. between include() and Include_once().
Explain the differences between get and post methods?
Does php require a web server?
What are the popular frameworks in php?
what is the importence of session.save_path in Php.ini file and wht changes u've to made before using sesssions in ur php program first time?
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 variable function php?