Jump to content

Recommended Posts

If you just want to put the contents of what was posted in a file then try this (with comments included):

[code]<?php
// file name and location
$file_to_write = "/var/tmp/post.txt";

// open the file for writing and assign to a resource id ($file)
$file = fopen($file_to_write, "w");

// write a header to the file
fwrite($file, "The following entries were posted:\n\n");

// write a row in the file for each of the posted elements
foreach ($_POST as $key => $value){
  fwrite($file, "$key: $value\n");
}

// close the file
fclose($file);
?>[/code]

Incidentally, I took these instructions directly from the [url=http://uk.php.net/manual/en/]PHP Manual[/url]!  A first stop for every PHP Newbie.

Regards
Huggie
Link to comment
https://forums.phpfreaks.com/topic/25903-newbe-php-help/#findComment-118336
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.