Shield Chart version 1-2-3 with PHP/MySQL

Submitted by DaiHo27 on
Shield Chart is feature-rich and facilitates the creation of visually impressive charts and sharp graphics. However full version has price about 300 dolla. This is a trial version, but it be deleted "Demo Version" and Link to Shield Chart homepage. It just has 12 styles (pie, column, area, line, donut...) but very cool. With mysql and a free php script simple, you can make website more beautiful

PHP File Handling: Reading File

Submitted by joken on
In this tutorial I'm going to show how to read back information from files. So before we can read information from a file we need to use a function fopen just to open the file for reading. In this lesson, we’re going to use the “hello.txt” file that we created in the writing of file lesson. To start in this lesson, we are going to create a new PHP file called "readfile.php".

Task Management System

Submitted by Yorkiebar on
Introduction: This tutorial will is going to be on how to create a task management system in PHP... it's going to be a long one! Pre-creation: First you will need a host for your PHP, either a web host or localhost is fine but you will need PHP and MySQL(i) capabilities. Database: We are going to be storing all of the created tasks in a database named 'tasksTutorial', and in there a table named 'tasks'. Let's create these now; Go to PHPMyAdmin and enter 'tasksTutorial' followed by pressing the 'create' button.

Eric Schmidt Dubbed 2014 as Mobile Application Year

Submitted by anthea on
Nowadays, some of the consumers chose and bring handy gadgets with them including " Tablets" and " Phones" which were considered as the latest trend of today's generation. People also preferred for these two devices, for the fact that they can carry these out wherever they may go, which gives them convenience and enjoyable experience, unlike personal computer and laptop which were difficult to

PHP File Handling: Accessing File

Submitted by joken on
In this tutorial, we’re going to access file in PHP. And primarily we’re going to focus on this lesson in dealing with fopen (filename, mode) so we’re going to open a file and we’re to provide a filename and we’re going to tell it what mode is should open it. And remember using “fopen” opens up a file whether it exists or not so we will create it if necessary. At this time, we will know first how to deal with FILE ACCESS MODES: Below are the three basic ways to open a file and the corresponding character that PHP uses.