Page 1 of 1

PHP not parsing - Call to undefined function

PostPosted: 07. August 2015 03:53
by conexor
I have a PHP script with the functions defined at the end but PHP does not seem to be parsing the file and finding those functions.
I get Call to undefined function...
PHP version is 5.6.8
XAMP version is also 5.6.8
Running on win 8.0


In more detail:
<PHP
//main script
bla
bla
myfunction(param1, param2, etc); <-- This does not work. It used to
more bla

//---- Functions
function myfunction(param1, param2, etc)
{

}
?>

Any ideas?

Thanks.

Re: PHP not parsing - Call to undefined function

PostPosted: 07. August 2015 03:59
by JJ_Tagy
conexor wrote:<PHP

What is this? And the bla bla is probably not parsed. If that is not the real code, you will need to post it in order for anyone to help.