Things to learn in PHP

PHP is one of the most widely used programming languages and it certainly plays a major role in web development. As a PHP web developer you should know some major things while working on php mysql environment- Using of PHP Core Functions and Classes: PHP function that you can take advantage of, so there are…

Read More

Difference between require() and require_once()?

The require() and require_once() functions perform same work. Both functions will include and evaluates the specific file while executing the code. if include() is not able to find a specified file on location at that time it will throw a warning however, it will not stop script execution. For the same scenerio require() will throw…

Read More

Data types in Mysql / Mariadb

Numeric Data Types: INT (Integer): Int data type represents an integer of normal size. So simply it can used to store numeric value. There are also BIGINT, MEDIUMINT, SMALLINT and TINYINT which represent different range of integer values. DECIMAL: Decimal data type represents numbers with specific floating values. Maximum permitted value is 65 and maximum…

Read More