I need to open a file , replace some content( 12345 with 77348) and save it. As far I have
However it doesn't seem to work .... I would appreciate any help!$cookie_file_path=$path."/cookies/shipping-cookie".$unique; $handle = fopen($cookie_file_path, "r+"); $cookie_file_path = str_replace("12345", "77348", $cookie_file_path);
fclose($handle);