Im trying to implement a mailing list but it doesnt seem to be working. I have had PHP activated on the server so that isnt the problem.
I am using…
Frame 1:
stop();
function lineAdapt() {
message_send = message;
while (msg_count<length(message)) {
msg_count = msg_count+1;
if ((substring(message_send, msg_count, 2)) eq “\r”) {
message_send = (substring(message_send, 1, msg_count-2)) add "
" add (substring(message_send, msg_count+2, (length(message_send))-msg_count+2));
}
}
message = message_send;
delete message_send;
delete msg_count;
}
the button for the ‘join’ uses
on (release) {
if (subject eq “” or from eq “”) {
stop();
} else {
lineAdapt();
loadVariablesNum(“mail.php3”, 0, “POST”);
gotoAndStop(“sub_ok”);
}
}
the php3 document:
<?php
mail("**mymail@bigpond.com**", $_GET[“subject”], $_GET[“message”], “From: PHPMailer
Reply-To: $_GET[“from”]
X-Mailer: PHP/” . phpversion());****?>
the website is at http://www.in2deep.com.au/private/ok
can someone help?