All I want to do is add a favicon.ico to my PHP website. Is there a simple PHP way of doing this or can it only be done with an HTML reference page?
Maybe using some jQuery/Ajax/JavaScript?
|
All I want to do is add a favicon.ico to my PHP website. Is there a simple PHP way of doing this or can it only be done with an HTML reference page? Maybe using some jQuery/Ajax/JavaScript? |
||||
|
By default, most browsers will try to resolve the favicon.ico, even if you do not mention it in the HTML of the website (just make sure the file is in the root of the website directory). However, for compatibility, you should add the html code for it in the section of your web page.
|
|||||||||
|
|
jQuery, ajax and javascript are all not PHP. Favicons can be set in HTML. HTML can be parsed with PHP. So your question is really not in the right direction. The question you should ask yourself; how am i parsing the HTML and how can I add the favicon there.. If you have a favicon.ico in your root path of your domain, your website will automatically load it. |
|||
|
|
favicon.icoin your root directory. – Matt Aug 3 '12 at 14:57