GitHub

Table Handling for PHP

Nice table output of data rows Columns adjust to data size Data manipulators for fields, formats raw data to a nice display output Colors! When specifying a color, choose from these strings: blue, red ...
File handling is the ability to read and write files on the server. PHP has built in functions for reading and writing files. $file = 'extras/users.txt'; // if(file ...
As PHP is a server side scripting language it does allow to create, access and manipulate files on the web server. Let's see how it works. The very first need to work with files is to open the file.
Dynamic PHP pages give you the option to choose a MySQL table dynamically from which to query. You must ensure that the table exists before running a query on the table. PHP has a quick function that ...