i want to read .ico-Images from a Website, store the Information to the Database and show the Images later on a global Website.
I have managed to save the images in a string into the Database. The step to show the Images on a Website is my problem.
For reading the Contents:
$data=file_get_contents("http://www.google.com/favicon.ico");
$data = base64_encode($data);
What is the right way to show that image in a single div on a website?
Fesp