robohelp Posted August 31, 2006 Share Posted August 31, 2006 HiI am making a enhancement to our helpdesk product. So we are using JSON for saving the Language defaults. Now I am Using PHP as a server based language. Now here is the logic of the program. Whenever our product is installed then a parser will create a HTML file which will have all the defaults from the JSON file. Now when a user changes the language then the parser will again Run and make the required changes in the JSON file and again create the HTML file and Replace it in that folder. I am not able to find a good solution for this.Can someone help me building it. I am not able to get how to Open a file, Read it, make the changes and Replace that file. I hope someone can help me in this regard.ThanksLalit Link to comment https://forums.phpfreaks.com/topic/19249-how-to-read-a-file-edit-and-replace-that-file-with-new-changes/ Share on other sites More sharing options...
Ifa Posted August 31, 2006 Share Posted August 31, 2006 [CODE]<?PHP if(!$_POST["new_html"]){ ?><form action="" method="post"><textarea name="new_html"><?PHP echo str_replace("<", "<", file_get_contents('file.html')); ?></textarea><input type="submit" value=" Save " /></form><?PHP }if($_POST["new_html"]){$file = fopen('file.html', '+w') or die('Could not open file');fwrite($file, $_POST["new_html"]);fclose($file);echo 'Changes saved';}?>[/code] Link to comment https://forums.phpfreaks.com/topic/19249-how-to-read-a-file-edit-and-replace-that-file-with-new-changes/#findComment-83405 Share on other sites More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.