help!!!!

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
rdog157h
Forum Newbie
Posts: 15
Joined: Tue Feb 03, 2004 9:17 pm

help!!!!

Post by rdog157h »

Fatal error: Call to undefined function: message_die() in /catchusers3/2010962/db/db.php on line 88


i get this error can someone tell me what i need to do?
User avatar
Dr Evil
Forum Contributor
Posts: 184
Joined: Wed Jan 14, 2004 9:56 am
Location: Switzerland

Post by Dr Evil »

Please show us the context.
But as it says you are visibly calling a function that does not exist or is somewhere else.

Dr Evil
kettle_drum
DevNet Resident
Posts: 1150
Joined: Sun Jul 20, 2003 9:25 pm
Location: West Yorkshire, England

Post by kettle_drum »

The error message is telling you everything:

Fatal error: Call to undefined function: message_die() in /catchusers3/2010962/db/db.php on line 88

On line 88 of your script you are calling a function that doesnt exist and so the script has a fatal error.

Try using function_exists('function_name') if you are unsure wether a function exists or not. Maybe you are trying to use the die() function or have misspelt a call to your own function.
Post Reply