Getting the following error when trying to get one php page to include another.
Warning: main(called_script.php): failed to open stream: No such file or directory in /nfs/cust/3/4/2/my_site/some_directory/sub_directory/my_script.php on line 20
Warning: main(): Failed opening 'baaChart.php' for inclusion (include_path='.:/usr/local/php/include') in /nfs/cust/3/4/2/mysite/some_directory/sub_directory/my_script.php on line 20
The line in the script is simple as follows
include ('called_script.php');
I am assuming i need to point my_script.php to where to look for called_script.php
How do I go about this?
They are in the same sub-directory by the way.