Forum Moderators: coopster
1. I'm trying to pass more than one value to the upload.php script. I know I can do it using HTTPService, but I'm having trouble getting HTTPService to pass text values along when the file is uploaded.
2. I want to get information back from upload.php, something like
<?
$filestatus = move_uploaded_file($file_temp,$file_path."/".$file_name);
if(!$filestatus) {
echo "Upload failed. Please try again.";
}
?>
and have it show up in a textarea or something.
Once again, I know how to do it with HTTPService, but I don't know how to make the FileReference trigger the HTTPService and listen to the result.