Hello,
I am trying to include a html file within a php script. I use this code:
This does nothing (nothing is included). However, if I remove the commas from the html file and change the include_url to $dirname.'/../Interview-Courses/Other-Info/Introduction/STCTFYTrainees.htm' it works as expected.
Is there any reason why using commas effects the include function? In a different script I include the same file, but use the absolute path instead of the full url, which also works as expected.
Thanks in advance,
Chris
I am trying to include a html file within a php script. I use this code:
Code:
$old_url = '[URL unfurl="true"]http://'.$_SERVER[/URL]['HTTP_HOST'].$_SERVER['SCRIPT_NAME'];
$dirname = dirname($old_url);
$include_url = $dirname.'/../Interview-Courses/Other-Info/Introduction/ST, CT, FY Trainees.htm';
include($include_url);
This does nothing (nothing is included). However, if I remove the commas from the html file and change the include_url to $dirname.'/../Interview-Courses/Other-Info/Introduction/STCTFYTrainees.htm' it works as expected.
Is there any reason why using commas effects the include function? In a different script I include the same file, but use the absolute path instead of the full url, which also works as expected.
Thanks in advance,
Chris