Hello,
I have two files:
/dirx/add.php
/globals/include/incthis.php
I would like to include the second file in the first file using the following code in /dirx/add.php:
include "/globals/include/incthis.php"
but it gives me the error:
Warning: Failed opening '/globals/include/incthis.php' for inclusion (include_path='') in C:\websites\mysite\dirx\add.php on line 6
Can someone give me step-by-steps to solving this? I am a newbie to php.
Thank you very much.