Dear Guys,
I am so sorry but I am a very old-school guy who can only work flash and html.
I am trying to create a message form page with flash but I don't know .cgi extension of the cPanel server. I found a guy who made this with .php but I couldn't succeed to modify it. I am sending my "send button" flash actionscript and .php text of that guy. Please tell me what to do, or if there is easier way, feel comfortable to be like explaining to an idiot
http://endulusvizyon.com/input.jpg
http://endulusvizyon.com/send.jpgCode:label_01 = "Your Message"; label_02 = "Your Name"; label_03 = "Your E-Mail"; text1 = label_01; text2 = label_02; text3 = label_03; this.onEnterFrame = function () { text_field_1.onSetFocus = function () { if (text1 == label_01) { text1 = ""; } // end if }; text_field_1.onKillFocus = function () { if (text1 == "") { text1 = label_01; } // end if }; text_field_2.onSetFocus = function () { if (text2 == label_02) { text2 = ""; } // end if }; text_field_2.onKillFocus = function () { if (text2 == "") { text2 = label_02; } // end if }; text_field_3.onSetFocus = function () { if (text3 == label_03) { text3 = ""; } // end if }; text_field_3.onKillFocus = function () { if (text3 == "") { text3 = label_03; } // end if }; };
PHPCode:on (release) { if (subject eq "" or from eq "" or message eq "" ) { stop(); } else { lineAdapt(); loadVariablesNum("mail.php3", 0, "POST"); } }
PHP Code:<?php
mail("kaz_aam@yahoo.com", $subject, "From: PHPMailer\nReply-To: $from\nX-Mailer: PHP/", $message . phpversion());
?>
Thanks for your help guys!!!



LinkBack URL
About LinkBacks
Reply With Quote





