]> jfr.im git - uguu.git/commitdiff
Update core.php
authorEric Johansson (neku) <redacted>
Sat, 7 Feb 2015 19:01:26 +0000 (20:01 +0100)
committerEric Johansson (neku) <redacted>
Sat, 7 Feb 2015 19:01:26 +0000 (20:01 +0100)
core.php

index 2e701762f687c9734d0c2a3dd1087931646195cc..81e1d5c59b5578ed8eb3c4d813248405a4d75db5 100644 (file)
--- a/core.php
+++ b/core.php
@@ -1,10 +1,16 @@
 <?php
 function save_file ($file, $name){
+    //Generate a random set of numbers to set in front of the filename
     $rand_string = crc32(microtime(true).mt_rand(1000, 9000));
+    //Where to save
     $path='/home/neku/www/files/';
+    //Remove any tags
     $file_data=strip_tags($file);
+    //Put together the random string+filename
     $file_name=$rand_string.'_'.$name;
+    //Move the file to the above location with said filename
     move_uploaded_file($file_data,$path.$file_name);
+    //Return url+filename to the user
     echo 'http://a.uguu.se/'.$file_name;
 }
 ?>