What are the most prominent features of CodeIgniter?
A list of most prominent features of CodeIgniter: It is an open source framework and free to use. It is extremely light weighted. It is based on the Model View…
A list of most prominent features of CodeIgniter: It is an open source framework and free to use. It is extremely light weighted. It is based on the Model View…
CodeIgniter is an open source and powerful framework used for developing web applications on PHP. It is loosely based on MVC pattern and similar to Cake PHP. CodeIgniter contains libraries,…
An ACL (Access Control List) is a list of permissions that is associated with an object. This list is the basis for MySQL server’s security model and it helps in…
CONCAT(A, B) – Concatenates two string values to create a single string output. Often used to combine two or more fields into one single field. FORMAT(X, D) – Formats the…
Following are Non-Standard string types: TINYTEXT TEXT MEDIUMTEXT LONGTEXT
SIX triggers are allowed in MySql table. They are as follows: BEFORE INSERT AFTER INSERT BEFORE UPDATE AFTER UPDATE BEFORE DELETE and AFTER DELETE
Following objects are created using CREATE statement: DATABASE EVENT FUNCTION INDEX PROCEDURE TABLE TRIGGER USER VIEW
NOW () command is used to show current year,month,date with hours,minutes and seconds. CURRENT_DATE() shows current year,month and date only.
Maximum of 16 indexed columns can be created for any standard table.
In MySql, top 50 rows are displayed by using this following query: SELECT * FROM LIMIT 0,50;