Jump to content

Search the Community

Showing results for tags 'file upload with .'.

  • Search By Tags

    Type tags separated by commas.
  • Search By Author

Content Type


Forums

  • Welcome to PHP Freaks
    • Announcements
    • Introductions
  • PHP Coding
    • PHP Coding Help
    • Regex Help
    • Third Party Scripts
    • FAQ/Code Snippet Repository
  • SQL / Database
    • MySQL Help
    • PostgreSQL
    • Microsoft SQL - MSSQL
    • Other RDBMS and SQL dialects
  • Client Side
    • HTML Help
    • CSS Help
    • Javascript Help
    • Other
  • Applications and Frameworks
    • Applications
    • Frameworks
    • Other Libraries
  • Web Server Administration
    • PHP Installation and Configuration
    • Linux
    • Apache HTTP Server
    • Microsoft IIS
    • Other Web Server Software
  • Other
    • Application Design
    • Other Programming Languages
    • Editor Help (PhpStorm, VS Code, etc)
    • Website Critique
    • Beta Test Your Stuff!
  • Freelance, Contracts, Employment, etc.
    • Services Offered
    • Job Offerings
  • General Discussion
    • PHPFreaks.com Website Feedback
    • Miscellaneous

Find results in...

Find results that contain...


Date Created

  • Start

    End


Last Updated

  • Start

    End


Filter by number of...

Joined

  • Start

    End


Group


AIM


MSN


Website URL


ICQ


Yahoo


Jabber


Skype


Location


Interests


Age


Donation Link

Found 1 result

  1. Hi ,Need some help please ? trying to upload image with file upload to server,the code looks like this..... ------------------------------------------------------------------------------------------------------------------------------- file.upload("upload.php?fln=" + _root._tempimageFileName[0]) ------------------------------------------------------------------------------------------------------------------------------- need some help writing the upload.php script to receive fln=" + _root._tempimageFileName[0].... My upload.php looks like this ..... -------------------------------------------------------------------------------------------------------------------------------- <?php // Variable (name) sent from Flash $filename = $_FILES['Filedata']['name']; // the uploaded file save as a temporary file on the web server $filetmpname = $_FILES['Filedata']['tmp_name']; /* You can return the File Type and File Size back to Flash if you like*/ //$fileType = $_FILES["Filedata"]["type"]; //$fileSizeMB = ($_FILES["Filedata"]["size"] / 1024 / 1000); // Path the file will be moved to $destination_path = "images/"; // Path and file the file will be moved to $destination_path = $destination_path . $filename; // Call the move_uploaded_file function to move the file // The move_uploaded_file function requires two parameters: // - path of the temporary file // - path where the file will be moved to if ( move_uploaded_file($filetmpname, $destination_path) ) { // move_uploaded_file returns true if the uploaded file was moved successfully, echo "OK"; } else { echo "FAIL"; } ?> thanks in advance for any help!!
×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.