get_header() funtion

PHP programming forum. Ask questions or help people concerning PHP code. Don't understand a function? Need help implementing a class? Don't understand a class? Here is where to ask. Remember to do your homework!

Moderator: General Moderators

Post Reply
murugovind
Forum Newbie
Posts: 2
Joined: Mon Jun 22, 2009 2:25 am

get_header() funtion

Post by murugovind »

I am getting the following error in a web page

Fatal error: Call to undefined function get_header() in /home/kgetccom/public_html/evankimbrell.com/index.php on line 1


Please anyone help me to resolve this.



Thanks,
Muru..
User avatar
requinix
Spammer :|
Posts: 6617
Joined: Wed Oct 15, 2008 2:35 am
Location: WA, USA

Re: get_header() funtion

Post by requinix »

Did you misspell "get_headers"?

You're trying to call a function that doesn't exist. That is a no-no. If you want to call it then you have to make sure it's defined somewhere first.
Post Reply