ramyakumar Posted November 7, 2009 Share Posted November 7, 2009 Hello, I am writing two php scripts one for form and other one to write the values of a form using php into a file and also print the values on the another html page. I dont know why it is not writing into the file but if I print the form values in the script, that is getting printed on the html page. The fopen should create the file but until I set the permissions manually it shows the error, " permission denied" on the html page. I even checked the path of the file. When I Execute the file, it directly goes to the else clause, "Cannot write to the file". Could anyone please help me with this quickly. I am using this code for writing to the file: $filename="test.txt"; if(is_writable($filename)){ if(!$fp = fopen($filename,'a')){ echo "cannot open file($filename)"; exit; } if($fp!=null) { fwrite($fp,$name); fwrite($fp,$date); fwrite($fp,$platform); fwrite($fp,$browser); fwrite($fp,$comments); } fclose($fp); } else { echo "Cannot write to the file"; } Thanks Quote Link to comment https://forums.phpfreaks.com/topic/180705-storig-form-values-to-file/ Share on other sites More sharing options...
.josh Posted November 7, 2009 Share Posted November 7, 2009 chmod Quote Link to comment https://forums.phpfreaks.com/topic/180705-storig-form-values-to-file/#findComment-953388 Share on other sites More sharing options...
ramyakumar Posted November 8, 2009 Author Share Posted November 8, 2009 I tried chmod() but I could not succeed in setting the permissions or writing to the file. Quote Link to comment https://forums.phpfreaks.com/topic/180705-storig-form-values-to-file/#findComment-953419 Share on other sites More sharing options...
.josh Posted November 8, 2009 Share Posted November 8, 2009 well maybe if you were to post how you tried to use it, errors given, etc.. IOW something more than "it doesn't work", we might be able to actually help you. Quote Link to comment https://forums.phpfreaks.com/topic/180705-storig-form-values-to-file/#findComment-953438 Share on other sites More sharing options...
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.