Javascript might work... should be something like this
<form action="watever.php" method="POST" enctype="multipart/form-data" onSubmit="return getpathof();">
<input type="file" name="fileup">
<input type="hidden" name="getpath">
<input type="Submit" value="Submit">
</form>
<script Language="Javascript">
function getpathof()
{
var temp;
temp = document.getElementById("fileup").value;
document.getElementById("getpath").value=temp;
return true;
}
</script>
<?
$clientpath = $_POST['getpath'];
...
?>
I guess this should do the job.. not % sure..
Good Luck
TommYNandA