thanks for yr reply
i'll try to explain more clearly
(and keep in mind i'm a real php newbie)
the flash file is passing using POST a folder name which is the desired folder destination on the server for the file that the user will upload in the form
an echo shows that the POST has worked
but i can't figure out how to make that variable be accessible to the form so that it can pass it to upload.php
after the file is selected....
here is the code
<?
$folder = $_POST['folder']."/";
echo $folder;
?>
<form enctype="multipart/form-data" action="upload.php" method="POST">
<!-- MAX_FILE_SIZE must precede the file input field -->
<input type="hidden" name="MAX_FILE_SIZE" value="30000" />
<!-- Name of input element determines name in $_FILES array -->
Send this file: <input name="userfile" type="file" />
<input type="submit" value="Send File" />
</form>
thnks again in advance
all suggestions welcome
jhave