I want to create an application server that serves html content which contains links to static images served by another server on a different domain. The images are uploaded by users through the application server.
This is what I would do to upload a JPEG file to the application server:
if(!file_exists("folder_name")) mkdir("folder_name", 0770);
$temp_file = $_FILES['image']['tmp_name'];
$im = imagecreatefromjpeg($temp_file);
$destination = "folder_name/file_name.jpg";
imagejpeg($im, $destination);
imagedestroy($im);
How would the code be changed if I were to upload the file to another server instead?
Add Note: The folders are to be created on the fly if it doesn't exist.
