takn25 Posted April 14, 2011 Share Posted April 14, 2011 Hi, I was in the process of making thumnails for avatars It used to work before but now the files are being saved as resource ID and not in an image format. I can not point out what the issue is and also may I add when I try to echo nothing is happening. $filename = $_FILES['myfile']['tmp_name']; if ($_POST['cpic']) { // Set a maximum height and width $width = 100; $height = 100; // Get new dimensions list($width_orig, $height_orig) = getimagesize($filename); $ratio_orig = $width_orig/$height_orig; $ratio_orig; if ($width/$height > $ratio_orig) { $width = $height*$ratio_orig; } else { $height = $width/$ratio_orig; } // Resample $image_p = imagecreatetruecolor($width, $height); $image = imagecreatefromjpeg($filename); imagecopyresampled($image_p, $image, 0, 0, 0, 0, $width, $height, $width_orig, $height_orig); $location = "cid/$myid/$filename"; imagejpeg($image_p, $location, 100); $query =mysql_query ("UPDATE clp SET avatar ='$location' WHERE cid='1'"); header ("LOCATION: editprofile.php"); } Quote Link to comment https://forums.phpfreaks.com/topic/233730-saved-as-resource-id/ Share on other sites More sharing options...
takn25 Posted April 14, 2011 Author Share Posted April 14, 2011 Nevermind figured it out missed a few things. I guess when you are coding and coding you tend to miss the small things ^^ Quote Link to comment https://forums.phpfreaks.com/topic/233730-saved-as-resource-id/#findComment-1201626 Share on other sites More sharing options...
Muddy_Funster Posted April 14, 2011 Share Posted April 14, 2011 Just out of intrest, was it the file MIME type expression? I don't use PHP for files much, would like to know incase I need to start some day. Quote Link to comment https://forums.phpfreaks.com/topic/233730-saved-as-resource-id/#findComment-1201634 Share on other sites More sharing options...
takn25 Posted April 15, 2011 Author Share Posted April 15, 2011 I missed $_FILES["myfile"]["name"]; Part. Quote Link to comment https://forums.phpfreaks.com/topic/233730-saved-as-resource-id/#findComment-1201969 Share on other sites More sharing options...
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.