Hi
We tried the demos, if the script is run as below, you can see the file results after uploading:
<?php
// Create Uploader object.
$uploader=new PhpUploader();
// Set a unique name to Uploader
$uploader->Name="myuploader";
// specify the temporary file location using TempDirectory property
$uploader->SaveDirectory="myfolder";
// Specify the maximum allowed size of the file using MaxSizeKB property
$uploader->MultipleFilesUpload=false;
$uploader->InsertText="Upload File ...";
$uploader->MaxSizeKB=1024000;
$uploader->AllowedFileExtensions="pdf";
//$uploader->FlashUploadMode="Partial";
//$uploader->ManualStartUpload=true;
// Render Uploader
$uploader->Render();
?>
However, if we add the form tag, then the results not showing up after uploading:
<form id="form1" method="POST">
<?php
// Create Uploader object.
$uploader=new PhpUploader();
// Set a unique name to Uploader
$uploader->Name="myuploader";
// specify the temporary file location using TempDirectory property
$uploader->SaveDirectory="myfolder";
// Specify the maximum allowed size of the file using MaxSizeKB property
$uploader->MultipleFilesUpload=false;
$uploader->InsertText="Upload File ...";
$uploader->MaxSizeKB=1024000;
$uploader->AllowedFileExtensions="pdf";
//$uploader->FlashUploadMode="Partial";
//$uploader->ManualStartUpload=true;
// Render Uploader
$uploader->Render();
?>
</form>
We need to use the form tag to retrieve the file properties. Can someone help?
Thanks.