Jump to content

[SOLVED] Weird Boxes but no error! And it still does not work but no error!


phprocket

Recommended Posts

 

 

I am tring to create a php file on the fly, everything else works except this line..

 

 



$contents .="\tif(parse_url(PUMMS_GLOBAL_INSTALLED_URL,1) !='localhost') {\$pumms_domain_cookie=ereg_replace('^[^\.]*\.([^\.]*)\.(.*)$', '\1.\2',parse_url(PUMMS_GLOBAL_INSTALLED_URL,1));}else{\$pumms_domain_cookie='';}\n";

print $contents;

 

For some reason the output is like this.

 

 


if(parse_url(PUMMS_GLOBAL_INSTALLED_URL,1) !='localhost') {$pumms_domain_cookie=ereg_replace('^[^\.]*\.([^\.]*)\.(.*)$', '.',parse_url(PUMMS_GLOBAL_INSTALLED_URL,1));}else{$pumms_domain_cookie='';}

 

well the forum will not post the results but what it looks like is a BOX.BOX where '\1.\2' used to be.

 

does anyone know how I can stop this ?

 

Thanks.

try

$contents .="\tif(parse_url(PUMMS_GLOBAL_INSTALLED_URL,1) !='localhost') {\$pumms_domain_cookie=ereg_replace('^[^\.]*\.([^\.]*)\.(.*)$', '\\1.\\2',parse_url(PUMMS_GLOBAL_INSTALLED_URL,1));}else{\$pumms_domain_cookie='';}\n";

@sasa

 

That works..

 

I made another version that works also but I like yours better.

 


        $contents .="\t".'if(parse_url(PUMMS_GLOBAL_INSTALLED_URL,1) !=\'localhost\') {$pumms_domain_cookie=ereg_replace(\'^[^\.]*\.([^\.]*)\.(.*)$\', \'\1.\2\',parse_url(PUMMS_GLOBAL_INSTALLED_URL,1));}else{$pumms_domain_cookie=\'\';}';

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.