PHP 8.5.0 Alpha 4 available for testing

Voting

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

The Note You're Voting On

Messerli at messerli dot net
2 years ago
// Send the Image as Base64 Data directly to the browser.
// No File on the Server! No Hacker Problem.

ob_start();
imagepng($img);
$ImageData=ob_get_contents();
ob_end_clean();
echo '<img src="data:image/jpg;base64,'.base64_encode($ImageData).'">';

<< Back to user notes page

To Top