Jump to content

newbie project: random favicon?


tefflox

Recommended Posts

the idea is to make an elliptical favicon of random color that is new for each page load. here's what i've got so far. the page / source is [url=http://listenlight.net/createpng.php]http://listenlight.net/createpng.php
[/url]
What am I missing?

[code]<?php
function randomFavicon() {
          $img = imagecreatetruecolor(16, 16); /* Create a blank image */
          $bgc = imagecolorallocate($img, rand(1,160), rand(1,160),rand(1,160));
          $ec  = imagecolorallocate($img, rand(1,160), rand(1,160),rand(1,160));
          imagefilledellipse($img, 8, 8, 12, 16, $ec);
          //header("Content-type: image/png");
          imagepng($img);
          
          return $img;
         }      
?>
<?php
$favipng = randomFavicon();

  echo( "<link rel=\"icon\" href=\"".$favipng."\" type=\"image/x-icon\" /><br /><link rel=\"shortcut icon\" href=\"".$favipng."\" type=\"image/x-icon\" /><br />");

  echo ( "<title> testing </title>" );
?>[/code]
Link to comment
https://forums.phpfreaks.com/topic/12894-newbie-project-random-favicon/
Share on other sites

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.