Jump to content

mailing list problems


cuekillar

Recommended Posts

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 thoughts

theres 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="urisp@urisp.com"><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
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.