can someone tell me why this difference when the same file is uploaded through different browsers??
Code: Select all
$type = $_FILES["file"]["type"];
echo $type;
Response from FireFox: image/png
why is the difference??
Moderator: General Moderators
Code: Select all
$type = $_FILES["file"]["type"];
echo $type;
Because Microsoft don't stick to standards.susrisha wrote:why is the difference??