<?php
//*Client Data System, Copyright (C) 2000, 2001 Tedd Kelleher. This is free software, subject to the
//*GNU GENERAL PUBLIC LICENSE, Version 2, June 1991 (in file named gpl.txt), which should accompany
//*any distribution of this file. Tedd Kelleher can be contacted at hide@address.com
//This page will dump the data entered in the course of using the system (client data, user data, etc) into a series of SQL INSERT statements
//$page_title = "Client Page";
//$page_id = "clients";
$page_access_levels = ":10:";
//$page_profile = "View Client Information";
//$instructions .= "View client information by inputting their ID below. ";
////Header for every page that finds the include directory, connects to db, authenticates user access
include("initialize_pointer.php");
if(!include($include_root."authenticate.inc")){echo "No Authentication"; exit; };
include($include_root."import_data.inc");
//Import the data file
$data = new import_data($include_root."client_data.txt");
$data->find_distinct_elements_seperated_by_commas(1);
?>