Hi all,
I am trying to upload a json file with Ajax
http://iprojects.orgfree.com/json/index.html
This is my codes
<?php
if(isset($_FILES['fileUpload']))
{
move_uploaded_file($_FILES['fileUpload']['tmp_name'], jsontest.json); //Fazer upload do arquivo
}
?>[/code:nim35txi]
In brownser console the result message is 200/Ok, but the json file is not updated!
Any help!