]> matita.cs.unibo.it Git - logicplayer.git/blobdiff - public_html/upload.php
New version.
[logicplayer.git] / public_html / upload.php
index 67c3a7ad2344d266b20814ad5f89d0b03a12d80c..c0446c638cb5c433a3e04a67e053a31f4768ba77 100755 (executable)
@@ -1,4 +1,5 @@
 <?php
+       include './dbData.php';
        $target_dir = "esercizi/";
        $target_file = $target_dir . basename($_FILES["fileToUpload"]["name"]);
        $uploadOk = 1;
        // if everything is ok, try to upload file
        } else {
                if (move_uploaded_file($_FILES["fileToUpload"]["tmp_name"], $target_file)) {
-                       echo "The file ". basename( $_FILES["fileToUpload"]["name"]). " has been uploaded.";
-               } else {
-                       echo "Sorry, there was an error uploading your file.";
+                       sleep(1);
+                       $xml = simplexml_load_file($DATA['listaEsercizi']);
+                       foreach($xml->esercizio as $esercizio)
+                       {
+                               if($esercizio==basename( $_FILES["fileToUpload"]["name"]))
+                               {
+                                       echo "The file ". basename( $_FILES["fileToUpload"]["name"]). " has been uploaded."; 
+                                       die;
+                               }
+                       }
                }
+               echo "Sorry, there was an error uploading your file.";
        }
 ?>
 <!DOCTYPE html>