Tag Archives: php programming

Database fundamentals : How does RDBMS’s support for multi-user environments enhance its advantages over other database systems?

Database fundamentals : RDBMS systems are designed to handle multiple users simultaneously. This support for multi-user environments enhances data integrity by ensuring that concurrent transactions do not interfere with each other. It provides concurrent access control, allowing multiple users to work with the data concurrently while maintaining the database’s integrity and consistency.

empty() function PHP

empty() function determines whether given variable is empty and also used for checking variable is set or not. Variable is said to empty if it is not set or value is false. empty values can be : 0 “” or “0” 0.0 (0 float value) FALSE empty array() NULL Reference : http://php.net/manual/en/function.empty.php