PHP allows several ways to include other PHP files: Include, Include Once, Require, and Require Once. The difference between Include and Require is whether or not to halt script execution. [...]
More →PHP allows several ways to include other PHP files: Include, Include Once, Require, and Require Once. The difference between Include and Require is whether or not to halt script execution. [...]
More →CSS Reset is a common web practice to clear browser quirks and provide a common base for CSS styling. There are several versions of CSS Resets floating around on the [...]
More →WebDAV is a technology that has been around since the mid 90′s designed to make web documents readable and writable. Similar to FTP and SFTP, WebDAV protocols allow users to [...]
More →Your IP address:
More →Php has some very useful ways to garner browser information. One of the most basic ways is inquire about user agent with
|
1 |
$_SERVER['HTTP_USER_AGENT'] |
There is another function get_broswer() which holds [...]
More →