Voting

: min(seven, one)?
(Example: nine)

The Note You're Voting On

YLearn
19 years ago
Just looked at what I posted again and found several mistakes of the major and minor sort. That's what I get for posting before I finish my coffee. This should work better (i.e. should work in the first place):

<?php
default: //a default error, just in case! :)
echo "There was a problem with your upload.";
$err_msg = "Unrecognized file POST error: ".$HTTP_POST_FILES['userfile']['error'];
if (!(
strpos($err_msg, "\n") === false)) {
$err_lines = explode("\n", $err_msg);
foreach (
$err_lines as $msg) {
error_log($msg, 0);
}
} else {
error_log($err_msg, 0);
}
break;
?>

<< Back to user notes page

To Top