Just to first clarify, I know there are better ways to do this, but I\'m determined to experiment.
Basically, I\'m trying to grab an image from a form post, then se
You write:
$_imagePost = file_get_contents($_FILES['_imagePost']);
The correct syntax is:
$_imagePost = file_get_contents($_FILES['_imagePost']['tmp_name']);
$_FILES
is an associative array whit following keys: