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?
help!!!!
Moderator: General Moderators
-
kettle_drum
- DevNet Resident
- Posts: 1150
- Joined: Sun Jul 20, 2003 9:25 pm
- Location: West Yorkshire, England
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.
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.