This commit is contained in:
2025-04-09 13:44:43 +07:00
parent 2046d31d24
commit e4705579f0
5218 changed files with 0 additions and 772569 deletions

View File

@ -1,10 +0,0 @@
<?php
// SET THE DESTINATION FOLDER
$source = $_FILES["upimage"]["tmp_name"];
$filename="TIC_".date("YmdHis").".png";
$destination = "../uploads/temps/".$filename;
// MOVE UPLOADED FILE TO DESTINATION
echo move_uploaded_file($source, $destination) ? "ok|$filename" : "failed|ERROR UPLOADING";
?>