quarantine Posted April 17, 2009 Share Posted April 17, 2009 I just started learning php and I am having trouble with this script, I intend for the script to write a users input and name into a text file on my server, when I run the script I can't get it to write anything, and it doesn't give me any errors. Any suggestions? <?php //retrieve user input $_POST['body'] = $body; $_POST['name'] = $name; //open and close the guest book file for writing $guestbook = "guestbook.txt"; $fh = fopen($guestbook, 'a') or die("can't open file"); fwrite($fh, $name, 'says', $body); fclose($fh); ?> Thanks for taking the time to read! Quote Link to comment https://forums.phpfreaks.com/topic/154547-solved-help-with-simple-fwrite-script/ Share on other sites More sharing options...
The Little Guy Posted April 17, 2009 Share Posted April 17, 2009 you have these backwards: $_POST['body'] = $body; $_POST['name'] = $name; They should look like this: $body = $_POST['body']; $name = $_POST['name']; Quote Link to comment https://forums.phpfreaks.com/topic/154547-solved-help-with-simple-fwrite-script/#findComment-812616 Share on other sites More sharing options...
quarantine Posted April 20, 2009 Author Share Posted April 20, 2009 aww simple mistake thanks for helping me out! Quote Link to comment https://forums.phpfreaks.com/topic/154547-solved-help-with-simple-fwrite-script/#findComment-814865 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.