Can somebody please tell me how to add meta tags on a home.php script?
Really appreciate the help.
Thanks
Printable View
Can somebody please tell me how to add meta tags on a home.php script?
Really appreciate the help.
Thanks
If you open that up, you should see that it looks like plain old html-except that there is a part that has php in it. You would insert the meta tags in the same place that you usually do.
A very simple example:
hello
php and html
phpinfo()
?>
Ooops! the server processed some of the code.
Here is what I meant to have shown. Just remove the *'s.
A very simple example:
<*html>
<*head>
<*title>hello<*/title>
<*/head>
<*body>
<*h1>php and html<*/h1>
<*?php
phpinfo()
*?>
<*/body>
<*/html>
Hope this helps.
Is your site using templates or is home.php a static php page?