AlexstyleRetro
Member
- Dec 17, 2017
- 151
- 19
Hi Devbest,
today I have arranged both the camera and the furno photo. however, the thumbnails of the rooms do not work. I take the picture but no image is created in the folder.
Thumbnailup.php
Thank you very much to those who will be able to help me, sorry for my bad english!
today I have arranged both the camera and the furno photo. however, the thumbnails of the rooms do not work. I take the picture but no image is created in the folder.
Thumbnailup.php
PHP:
<?php
if(!empty($GLOBALS['HTTP_RAW_POST_DATA'])){
$file = $_GET['roomid'].'.png';
$fp = fopen($file, "wb");
fwrite($fp, $GLOBALS['HTTP_RAW_POST_DATA']);
fclose($fp);
} else {
echo 'Not Found.';
}
?>
Thank you very much to those who will be able to help me, sorry for my bad english!
Last edited: