Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations strongm on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Include url that contains commas 1

Status
Not open for further replies.

Zhris

Programmer
Aug 5, 2008
254
GB
Hello,

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
 
Hi,

Thank you for your fast response.

I just tried encoding the url and recieved the same result.

Code:
$include_url = urlencode($include_url);

include($include_url);

Do you have another suggestion? Should I be using the absolute path instead of the url anyway?

Thanks,

Chris
 
Thank you again,

Still having the same problem:

Code:
$include_url = $dirname.'/../Interview-Courses/Other-Info/Introduction/'.urlencode("ST, CT, FY Trainees.htm");

include($include_url);

Unless this isn't how you meant?

Although it is impracticle, because I will have to make alot of changes across many files, I have used the absolute path instead, which works:

Code:
include(getcwd().'/../Interview-Courses/Other-Info/Introduction/ST, CT, FY Trainees.htm');

A friend of mine just suggested that I should encode the url too, therefore I am still baffled as to how to approach my original example.

Thank you very much for your help.

Chris

 
Hi

My mistake, the comma ( , ) is extra character, not unsafe. In you URL only the spaces ( ) has to be encoded.

My mistake, I thought that after having a $_SERVER['SCRIPT_NAME'] in your URL, the rest is query. There the spaces replaced with add signs ( + ) by [tt]urlencode()[/tt] are Ok, however in the path they are not.

This should work :
Code:
[navy]$include_url[/navy] [teal]=[/teal] [COLOR=darkgoldenrod]str_replace[/color][teal]([/teal][green][i]' '[/i][/green][teal],[/teal][green][i]'%20'[/i][/green][teal],[/teal][navy]$include_url[/navy][teal]);[/teal]
And sorry.

Feherke.
 
That worked perfectly. I have only just got back to continue with this and you've saved me a bit of hassle.

Thank you again for your help!

Chris
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top