ciao sto tentando di capire perchè non riconosce il file png ho istallato ajax chat e sto tentando di modificarlo qui è ciò che sono riuscito a fare fcfclean.it/chat/ chiedo aiuto grazie
Codice PHP:
<?php
$allowedExts = array("png");
$extension = end(explode(".", $_FILES["file"]["name"]));
if (($_FILES["file"]["type"] == "png")
($_FILES["file"]["size"] < 900000)
in_array($extension, $allowedExts))
{
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>Il tuo file è stato caricato con successo.<br>";
echo "Aggiorna la finestra del browser di chat per vedere il tuo avatar";
echo "<br/><br/><input type='button' value='Close this window' onclick='self.close()'>";
}
}
else
{
echo "<center>Il file deve essere in formato .png massimo 250kb!<br><br>";
echo "<input type='button' value='Go Back and Try Again' onclick='goBack()'></center>";
}
?>