Enough answers, I think? If you want EACH value of $_POST on a new line, then why not implode with \n instead of \t?

Now you get only one big line, because you only WRITE one \n.


Edwin


Ryan Holowaychuk wrote:
I am trying to save to a text file. And I have managed to do that part
now, but what happens is when I save to the file, all the lines get put
into one big line in the file.
I am creating a roster input that I adding to our website: No, name
grade .....
The roster will contain 15 players
So right now the implode puts everything on one line in the text file!!!
So I am no sure if anybody can shed some light on this one.
Thanks again
Ryan
<?
//create a new file
$fp = fopen("/place/on/server/" . $HTTP_POST_VARS['team'] , "w");
$file_data = implode("\t\", $_POST);
//this would return values spit by tabs
//write to the open file handle
fwrite($fp, $file_data . "\r\n");
//close the file
fclose($fp); ?>





--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php



Reply via email to