Vil ikke godkende filtype
Hejsa,Jeg har følgende (del) kode der checker en filetype, men den skriver fejl ved ".t" filer. Hvorfor?
//Banned extentions
$banned_filetypes = "bat, pl, cgi, js, exe, php, php3, php4, php5";
//Get the file extention
$file_type = $_FILES['upld_file']['name'];
$file_type = pathinfo($file_type);
$file_type = strtolower($file_type['extension']);
//Check if filetype is a banned extention
if (strstr($banned_filetypes, $file_type)) {
$msg = "Filetype not allowed<br />
Please contact the webmaster<br />
<br />
<b>Filetypes not allowed:</b><br />".
$banned_filetypes;
include "include/status_error.php";
exit();
}
