PHP 8.5.0 Alpha 1 available for testing

Voting

: max(three, five)?
(Example: nine)

The Note You're Voting On

winkelnkemper at googlemail dot com
14 years ago
If you want to save data that is derived from a Javascript canvas.toDataURL() function, you have to convert blanks into plusses. If you do not do that, the decoded data is corrupted:

<?php
$encodedData
= str_replace(' ','+',$encodedData);
$decocedData = base64_decode($encodedData);
?>

<< Back to user notes page

To Top