do u know where u posted this?

On Tue, Sep 30, 2008 at 1:16 PM, gilbert_mizrahi <[EMAIL PROTECTED]> wrote:

>   I have been playing around uploading files from Flex/AIR to php with
> this script:
>
> <?php
> $tempFile = $_FILES['Filedata']['tmp_name'];
> $fileName = $_FILES['Filedata']['name'];
>
> if(move_uploaded_file($tempFile, "./videos/" . $fileName)) {
> echo "The file ". basename( $_FILES['uploadedfile']['name']).
> " has been uploaded successfully";
> } else{
> echo "There was an error uploading the file, please try again!";
> }
> ?>
>
> What would be the equivalent for asp.net?
>
> Gilbert
>
>  
>

Reply via email to