
 Larry Wakeman - 2009-11-19 18:19:07
This is a fairly minor thing but I would change lines 18-33 of the read_dbf.php to:
$thefile = '';
if (isset($_GET['f'])) {
    $thefile=$_GET['f'];
} elseif (isset($_POST['f'])) {
    $thefile=$_POST['f'];
}
I always run my development environment with display_errors on and I highly recommend this to all developers.  Good practice to write code that doesn't produce runtime errors even though this is masked in the production environment where I turn display_error off. 
Larry