Add Css 3 Image Filters To Php
I made a webpage where I upload (to a database) and display at same time in latest uploaded manner like any social networking. I added a button 'Add Filter', which on clicking open
Solution 1:
I don't see where you've set the ID. Does changing:
$image1= '<img src="data:image/jpeg;base64,'.base64_encode( $image['url'] ).'" width="500" height="500" >';
to
$image1= '<img src="data:image/jpeg;base64,'.base64_encode( $image['url'] ).'" width="500" height="500" id="myImg" >';
work?
Post a Comment for "Add Css 3 Image Filters To Php"