Creating Word, Excel and CSV files with PHP
Browsing the World Wide Web you can find out various methods of creating files with PHP. In this article we…
The easy way to know
Browsing the World Wide Web you can find out various methods of creating files with PHP. In this article we…
Rich Text Format (often abbreviated as RTF), to surprise of many, is quite complex text data format. During its long…
Portable Document Format (PDF) is a file format created for the document exchange. Each PDF file encapsulates a complete description…
The Xdebug is the extension for PHP that helps debugging PHP scripts by providing a lot of valuable debug information.…
Array does not have to be a simple list of keys and values; each array element can contain another array…
Below is the code for connecting to a MSSQL Server database. <?php$myServer = “localhost”;$myUser = “your_name”;$myPass = “your_password”;$myDB = “examples”;…
It is often necessary to arrange the elements in an array in numerical order from highest to lowest values (descending…
JavaScript is mainly used as a client side scripting language, while PHP is a server side technology. Unlike Java or…
A variable is a holder for a type of data. So, based on its type, a variable can hold numbers,…
Constants just as variables are used to store information. The main difference between constants and variables is that constant value…