What is get and post method in php?
No Answer is Posted For this Question
Be the First to Post Answer
How to convert a string to uppercase in php?
Explain type casting and type juggling.
What is final class and final method in php?
Is md5() is breakable if yes than how?
What are global variables in php?
What is the role of php.ini file?
What do you mean by design patterns (php) ?
What does accessing a class via :: means?
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
Without using forms and hidden variables, how to send variables from a PHP script to another URL using POST method?
what is benefit of magento?
Explain what is the function file_get_contents() usefull for?