ok
Direktori : /home/u528428458/domains/jinews.co.in/public_html/ |
Current File : /home/u528428458/domains/jinews.co.in/public_html/editor-upload.php |
<?php if(empty($_FILES['file'])) { exit(); } $errorImgFile = "./news/error.jpg"; $temp = explode(".", $_FILES["file"]["name"]); $newfilename = round(microtime(true)) . '.' . end($temp); $destinationFilePath1 = './news/'.$newfilename ; if(!move_uploaded_file($_FILES['file']['tmp_name'], $destinationFilePath1)){ echo $errorImgFile; } else{ //$destinationFilePath1 = './cadmin/news/'.$newfilename ; echo $destinationFilePath1; } ?>