<?php
##################################################################
#Preditor vs.0.5 :: php file editor
#Author: Rick Hopkins
#Date: October 22, 2002
#Desc: A program designed to make my job easier. It will allow for selection of a file, uploading,
# and editing of file through customized criteria
#Version: 0.5
##################################################################
#require frw_class.php for the everything you could possible need
require("preditor_class.php");
#Start Up A Session
session_start();
#start up frw_class for file re-writing
$preditor = new preditor_class($_GET);
##################################################################
?>