Page 1 of 1

help!!!!

Posted: Tue Feb 03, 2004 9:17 pm
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?

Posted: Wed Feb 04, 2004 4:00 am
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

Posted: Wed Feb 04, 2004 8:24 am
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.