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/

------------------
THE PERFECT JOB
------------------

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 applicant information:

mysql> CREATE DATABASE jobs;

3. Edit the included mySQL dump file "jobs.sql" to reflect your requirements, by adding or removing records from the "country", "industry", "salary" and other static tables.

4. Create the database tables using the dump file:

$ mysql -u <username> -p <password> -D <database> < jobs.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.

6. Optionally, move these administration scripts

admin.php
add.php
delete.php
edit.php
search.php
resume_details.php

into a separate administration directory which may be protected via Apache's HTTP authentication.

7. Browse to the URL 

http://yourserver/yourfolder/job_list.php to begin using the application.

----
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/
-----