Jump to content

[SOLVED] $_POST - using PHP and Flash


learntoreed

Recommended Posts

I've created a newsletter signup form using Flash.  The users include their email in a form with a variable name 'newsletter'.  Once they hit 'submit' the variable is sent to the following PHP file:

 

<?php
$fn = "newsletter.txt";
$file = fopen($fn, "a");
$size = filesize($fn);

if($_POST['newsletter']) fwrite($file, $_POST['newsletter']);

$text = fread($file, $size);
fclose($file);
?>

 

This writes the email addresses to the 'newsletter.txt' file.  What I can't seem to figure out is how to include a line break after the email is written to the file.  Right now all of the information submitted runs together in a single line. 

 

I've tried inserting '\n' in a number of places, but with no luck.

 

Any help would be greatly appreciated!

 

Thank you!

Link to comment
https://forums.phpfreaks.com/topic/79719-solved-_post-using-php-and-flash/
Share on other sites

Archived

This topic is now archived and is closed to further replies.

×
×
  • 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.