ciao a tutti ;) sto lavorando su ajax chat fcfclean.it/chat/index.php ho un problema con upload file png non riconosce il formato ne la grandezza (The file must be both .png and under 250kb in size!) in chat si può entrare sia da guest che da registrati manca solo il recupero della password non riesco a capire dove sta l'errore chiedo aiuto grazie se metto la foto png dentro la cartella la foto si vede ma non funziona upload
---------------------------
Codice PHP:
<?php
$file = array("png");
if(!is_array($_FILES["file"]['name']))
if (($_FILES["file"]["type"] == "png")
&& ($_FILES["file"]["size"] < 2000000)
&& in_array($file))
{
if ($_FILES["file"]["error"] > 0)
{
echo "Return Code: " . $_FILES["file"]["error"] . "<br>";
}
else
{
move_uploaded_file($_FILES["file"]["tmp_name"],
"img/avatars/" . $_FILES["file"]["name"]);
echo "<br><br>Your file was uploaded successfully.<br>";
echo "Refresh the chat browser window to see your Avatar";
echo "<br/><br/><input type='button' value='Close this window' onclick='self.close()'>";
}
}
else
{
echo "<center>The file must be both .png and under 250kb in size!<br><br>";
echo "<input type='button' value='Go Back and Try Again' onclick='goBack()'></center>";
}
?>