cuekillar Posted October 12, 2006 Share Posted October 12, 2006 when u type ur address in and hit submit nothing happens and it just resets, although it did make the email_list.txt file but wont add anythign into it... Im completely lost, any thoughtstheres the site http://www.nintendo.online-cue.com/send_email.php===CODE====<?php// join the mail list?if ($php_script_list == "yes")if(file_exists("email_list.txt")){$newfile = fopen("email_list.txt", "r");while(!feof($newfile)){$duplicate = fgetss($newfile, 255);// is email address submitted already on file?if(eregi("$from", $duplicate)){print("This email <strong>$from</strong>"); print(" is already in the database. <br>Please go back");print(" and uncheck the mail list box");fclose($newfile);exit;}}fclose($newfile);$addemail = fopen("email_list.txt", "a");fputs($addemail, "$from\n");fclose($addemail);}else{// since file doesn't already exist, let's create for first time$newfile = fopen("email_list.txt", "a");fputs($newfile, "$from\n");fclose($newfile);chmod("email_list.txt", 0666);}?><form action="" method="POST">e-mail:<input type="text" size="22" name="from" value="[email protected]"><br>Let me recieve newsletters!<input type="checkbox" name="php_script_list" value="yes"><br><br>Enter your message and click submit!<input type="submit" name="submit" value="Submit">====END CODE==== Link to comment https://forums.phpfreaks.com/topic/23810-mailing-list-problems/ Share on other sites More sharing options...
cuekillar Posted October 12, 2006 Author Share Posted October 12, 2006 also how could I add a message that appears when some1 joins the list or a redirected page saying thanks or somthing?thanks in advanced :) Link to comment https://forums.phpfreaks.com/topic/23810-mailing-list-problems/#findComment-108140 Share on other sites More sharing options...
tomfmason Posted October 13, 2006 Share Posted October 13, 2006 try using fwrite instead of fputs. Link to comment https://forums.phpfreaks.com/topic/23810-mailing-list-problems/#findComment-108142 Share on other sites More sharing options...
cuekillar Posted October 13, 2006 Author Share Posted October 13, 2006 it worked thanks Link to comment https://forums.phpfreaks.com/topic/23810-mailing-list-problems/#findComment-108158 Share on other sites More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.