Ich möchte bei meinem Upload den Datentyp auf text/html und text/plain beschränken.
Jedoch bekomme ich nicht heraus, wie ich das machen kann. Kann mir bitte jemand weiterhelfen?
$_FILES['userfile'] // Hochzuladene Datei im tmp
if ($_FILES['userfile']['type'] != "text/html" || $_FILES['userfile']['type'] != "text/plain") {
echo"nicht richtige datei";
}
else {
echo"erfolgreich";
}
alexs Gast |