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.

Link to comment
Share on other sites

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";

Link to comment
Share on other sites

@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=\'\';}';

Link to comment
Share on other sites

This thread is more than a year old. Please don't revive it unless you have something important to add.

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Restore formatting

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • 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.