fhdfhdfhdfhdfhdfhdfdfhdfhdfhdhfdfhdfhdfhd dfhdfhdfhdfhdfhdfhdfhdfdfhdfhdfhdhfdfhdfhdfhdfh
| DIR:/home/u1105814/www/rarental.co.id/admin/config/ |
| Current File : /home/u1105814/www/rarental.co.id/admin/config/fungsi_thumb.php |
<?php
function UploadImage($fupload_name){
//direktori gambar
$vdir_upload = "../../../foto_produk/";
$vfile_upload = $vdir_upload . $fupload_name;
//Simpan gambar dalam ukuran sebenarnya
move_uploaded_file($_FILES["gambar"]["tmp_name"], $vfile_upload);
}
function UploadFile($fupload_name){
//direktori file
$vdir_upload = "../../../foto_produk/";
$vfile_upload = $vdir_upload . $fupload_name;
//Simpan gambar dalam ukuran sebenarnya
move_uploaded_file($_FILES["gambar"]["tmp_name"], $vfile_upload);
}
?>
|