uploade en fil
Jeg er lige ved at implementere fileupload tutorialen fundet påhttp://da.vidnicholson.com/2006/10/php-image-uploader-and-manipulator.html
Men der hvor jeg skal gemme billedet (filen) på serveren ved jeg ikke hvad jeg skal skrive. Der står følgende i koden:
// After the user has chosen the area to crop, the cropped
// image is passed to the following function that you must
// write your own code for:
function storeImage($img_id)
{
// $img_id is a GD image reference, if you want the actual
// JPEG data pass it to imgdata (as below)
$_SESSION['imgcropper']['cropped'] = imgdata($img_id);
}
- Hvad skriver jeg for at gemme filen i en bestemt mappe?
