Hi all
I’m trying to upload files to a folder on my webserver from flash and script seems to work fine except I cant find the files…i dont know where they are being uploaded…excuse my poor knowledge i’m sure you are probably laughing
I’m using this php script I found here on kirupa tutorials:
<?php
if ($_FILES['Filedata']['name']) {
move_uploaded_file($_FILES['Filedata']['tmp_name'], 'upload_directory/' . basename($_FILES['Filedata']['name']));
}
?>
can someone help me please?