COPYRIGHT NOTE:

All source code copyright and proprietary Melonfire, 2001. All content, brand names and trademarks copyright and proprietary Melonfire, 2001. All rights reserved. Copyright infringement is a violation of law.

This source code is provided with NO WARRANTY WHATSOEVER. It is meant for illustrative purposes only, and is NOT recommended for use in production environments. 

Read more articles like this one at http://www.melonfire.com/community/columns/trog/

------------------
TIME IS MONEY
------------------

Requirements:
-------------
Apache Web server with PHP4
mySQL database
PHP register_globals=On

Installation:
-------------
1. Extract the files from the source archive into a directory off your Web server root.

2. Create a mySQL database to store timesheet information:

mysql> CREATE DATABASE time;

3. Edit the included mySQL dump file "time.sql" to reflect your requirements, by adding or removing records from the "projects", "tasks" and "users" tables.

4. Create the database tables using the dump file:

$ mysql -u <username> -p <password> -D <database> < time.sql

5. Update the included configuration file "config.php" with username and password information - note that this user must have permission to INSERT, UPDATE and DELETE records from the database.

7. Browse to the URL 

http://yourserver/yourfolder/index.html to begin using the application. You can log in as the "john:john" example user.

----
COPYRIGHT NOTE:

All source code copyright and proprietary Melonfire, 2001. All content, brand names and trademarks copyright and proprietary Melonfire, 2001. All rights reserved. Copyright infringement is a violation of law.

This source code is provided with NO WARRANTY WHATSOEVER. It is meant for illustrative purposes only, and is NOT recommended for use in production environments. 

Read more articles like this one at http://www.melonfire.com/community/columns/trog/
-----