I have a problem with that function, sometimes I save the image, sometimes I do not and I do not know why, I have done everything and nothing. Could someone help me?
Here the code.
<?php
$croped_image = $_POST['dataImage'];
list($type, $croped_image) = explode(';', $croped_image);
list(, $croped_image) = explode(',', $croped_image);
$croped_image = base64_decode($croped_image);
$image_name = time().'.png';
//Guardamos la imagen
file_put_contents('../eventos/'.$image_name, $croped_image);
?>