我有多远:
这是我迄今为止创造的。它写入.txt文件并使用我想要更改的其他格式。
代码:
<?php
$myfile = fopen("emaillist.txt", "a+");
$txt = $_POST['country'] . " -- " . $_POST['email'] . "\n";
fwrite($myfile, $txt);
fclose($myfile);
header("Location: http://www.myredirectlocation.com");
?>
所以基本上这个代码我存储了已注册的电子邮件。 截至目前,我的电子邮件存储在.txt文件中:
USA -- email1@something.com
USA -- email2@something.com
Canada -- email3@something.com
我需要什么:
我想写入.csv或.xls文件而不是.txt文件。
而且我还希望它为每个国家/地区制作列并以单独的行写入。 所以它看起来像这样:
USA | Canada | Australia
email1@something.com | email2@something.com | email3@something.com