Hello guys!
I want to upload image using the Croppie.js. My upload.php looks like this:
<?php
$data = $_POST["image"];
$image_array_1 = explode(";", $data);
$image_array_2 = explode(",", $image_array_1[1]);
$data = base64_decode($image_array_2[1]);
$imageName = time() . '.png';
file_put_contents($imageName, $data);
echo $imageName;
?>
I can upload the cropped image but it keeps saying: Notice : Undefined offset: 1 in C:\xampp\htdocs\test\new\upload.php on line 9
Notice : Undefined offset: 1 in C:\xampp\htdocs\test\new\upload.php on line 10
Any idea?