what is mean by portal
Answer / Shashi Singh
A portal refers to a web-based application that provides access to multiple resources and services, often in a customizable and user-friendly interface. Portals can be used for various purposes such as intranet, extranet, or internet portals.
| Is This Answer Correct ? | 0 Yes | 0 No |
How can I find my php version?
How to read a file in binary mode?
Is empty function c++?
What is the purpose of php?
What is the difference between mysql_connect and mysql_pconnect ? Which one is good in terms of performance ?
Write the code for upload a video file in PHP.How will You Play this in Your Page.?
2 Answers ASD Lab, Convex Digital,
What is overloading in php?
How the result set of mysql be handled 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
How the values are ordered in an array?
Is overloading possible in php?
What is constructors and destructors?