So I just spent a few hours trying to figure out how to submit form data with Actionscript. It really isn't very hard, so I have discovered after a little research. I am going to show you an example of how to do it which I wouldn't describe as "best practice" but it works.
The reason I describe this as less than best practice is because when you send data to the sever you get no response. So, even though it works 99.9 per cent of the time, you do not get a confirmation that the server received your request.
All my client wants is for a user to be able to enter his / her email address in to a box and have and email sent and then add that email address to an email. So really we are just sending some text to my client from a form. We want the user to enter the text and click send and have it be sent without another browser window opening.
The model for this is as follows: flash will send data to a URL with the POST method and a PHP file will get the data and send an email to my client.
So we need 2 things:
The actionscript...
-
var request:URLRequest = new URLRequest( "http://mysite.com/submit.php" );
-
-
var variables:URLVariables = new URLVariables();
-
variables.email = emailSubmitText;
-
-
request.data = variables;
-
-
request.method = URLRequestMethod.POST;
-
-
sendToURL(request);
and the PHP:
79 comments ↓
If someone were malicious they could hijak your php script in order to spam the target email address. from the linux prompt:
wget –post-string ‘email=insert my spam message here…’ \
http://yoursite.com/emailscript.php
from php you can call the same command using shell_exec() function, or use the bultin php HTTP request:
http_post_data ( “yoursite.com” , “email=spamspamspam”)
—
So how do we protect from that? well first, we can build in distrust into the PHP backend. we can Regex the $_POST['email'] variable to validate it as an email:
if(eregi(”^[_a-z0-9-]+(\.[_a-z0-9-]+)*@[a-z0-9-]+(\.[a-z0-9-]+)*(\.[a-z]{2,3})$”, $email)){
//send email
}else{
//possible spamming/hacking attempt
}
–
We can also build in sessions and AI so the server only allows X requests per UNIT_OF_TIME from a certain client.
Of course your current implementation is reasonably secure by obscurity: someone would need to be dedicatedly looking for holes in your site, but auto-compromising bots probably wouldn’t catch it.
On a side note, I’ve subscribed to your RSS.
I am glad that you posted this comment because my code was definitely lacking proper validation. That said I think you should look at this article:
http://www.ilovejackdaniels.com/php/email-address-validation
This seems fairly comprehensive.
I love ilovejackdaniels. his cheat sheets are hanging up in my office, they’re the best web development quick reference guides.
I am confused as to how you call the variable “email”. Everytime I try to enter a var value for my input text it tells me its not possible in actionscript 3.0 and that i should use 1.0 or 2.0….
Are you talking about in the Actionscript or the PHP?
Eddie
nice, any listener rather the process completed successfully or not?
[...] can find at this tutorial the source code of AS3 and PHP script, in order to submit data to an email. No Comments Leave [...]
Use URLLoader.load to get a return message from php.
@dhan,
Thanks! I meant to update this post with that information but haven’t had the time.
Eddie
Здравствуйте!Мне Очень понравился этот сайт! Великолепно!. Как у вас хватило сил на такую кропотливую работу для публикаций текстов и вообще подбора всего материала?! Желаю вам “Так Держать!” и не останавливаться на достигнутом, у Вас хороший старт! Предлагаю оценить так же мой сайт.
Мимо такого сайта не пройдешь, и уж тем более не забудешь оставить отличный отзыв, как делают это все! сайта и я в правду нужный!
This is a good method for sending mail when the swf file is on a different domain than the php file that sends the email.
if you use loader.load(request) you need to set up a crossdomains.xml file on the domain of the php file. Otherwise flash gives a security sandbox violation
Статья совпала с моими раздумиями. Посоветую друзьям.
you could just create a RegExp object within flash to test the email instead of php. then request cookies with the SharedObject object to detect whether or not that computer has entered data already, then block the machine that way.
how is the email confirmed – isn’t a button listener required in the actionscript? Am i missing something?
What do you mean by confirmed? Do you mean how does the actionscript know if the email actually sent?
Что-то подобное у меня уже год из головы не выходит!
Познавательно. Значит надо какие-нибудь поправки вносить.
hey what if i want to send more than 1 variable to the mail, how do i do that?
@marin
You would have to do 2 things. You would need to set the variable up on the Flash side.
var emailName = “Eddie”;
variables.name = emailName;
“variables” is just an array, you add values to it by doing variables.whatever.
Then in the php, since you are using post you use
$name = $_POST['name'];
Does that make sense?
Вот именно поэтому и не хочется иногда двигаться вперёд!
[...] Comment! Sending form data with Actionscript 3 — Flash Flood. [...]
Staff
I couldn’t find a good example of this anywhere. Thank you very much. My project is working!
My friend on Orkut shared this link with me and I’m not dissapointed that I came here.
Неплохо eddieoleary.com. Если конечно кому то интересно то не мешало было бы фотографий или иллюстраций поболее. Не стесняйтесь ребята, вас читают!
Добавил в свои закладки. Теперь буду вас намного почаще читать!
Добавил в свои закладки. Теперь буду вас намного почаще читать!
Очень интересно. Но чего-то не хватает. Может быть, стоит добавить каких-нибудь картинок или фото?
Спасибо за эту информацию, однако осмелюсь внести долю критики, мне кажется автор перестарался с изложением фактов, и статья получилась довольно академичной и “сухой”.
Что-то футер у вас вправо съехал (в опере при разрешении 1024х768)
Хорошо пишете. Надеюсь, когда-нибудь увижу нечто подобное и на своем блоге…
Добавил в свои закладки. Теперь буду вас намного почаще читать!
Очень интересно. Но чего-то не хватает. Может быть, стоит добавить каких-нибудь картинок или фото?
Спасибо вам за сайт, очень полезный ресурс, мне очень нравится
Хорошо пишете. Надеюсь, когда-нибудь увижу нечто подобное и на своем блоге…
Хм, почему-то у меня вместо заголовка блога вопросики…
Работаю менеджером. Хочу сделать интернет магазин. Порекомендуйте человека или организацию, кто поможет мне в этом. Главное чтоб человек, который его делает был адекватный и недорого.
Хм, почему-то у меня вместо заголовка блога вопросики…
Очень интересно. Но чего-то не хватает. Может быть, стоит добавить каких-нибудь картинок или фото?
Хорошо пишете. Учились где-то или просто с опытом пришло?
Хотя я уже и читал подобные посты, но не дает мне это покоя. Спасибо за пост.
Спасибо вам за сайт, очень полезный ресурс, мне очень нравится
Хорошо пишете. Учились где-то или просто с опытом пришло?
Да… Мне действительно близка обсуждаемая тема! Даже грустно как-то
Большое спасибо автору. Возможно, в будущем я и правда реализую подобную затею.
Почему этот вебсайт не имейте другую поддержку языков?
Спасибо огромное. Почитал и понравилось. Картинок бы ещё.
Петербуржская Школа Правильного Питания (7 минут от метро “Чернышевская”) приглашает всех желающих избавиться от лишнего веса на бесплатные вечерние (18:45) ознакомительные занятия 15, 16, 18, 19 и 22 июня 2009г.
Более подробная информация и запись на сайте – http://hudeem-vmeste.com
порно видио скачать бесплатно
бесплатное фото малолеток порно
две на одного порно видео бесплатно
порно онлайн домашнее бесплатно
девок трахают негры видео смотреть бесплатно
бесплатно смотреть порно в онлайне
безплатно порно видео частное скачать бесплатно
скачать бесплатно порноролики
бесплатное порно видео и порно фото
бесплатное износилование
онлайн бесплатно порно фильм
студентки порно видео бесплатно скачать
порнушка бесплатно онлайн
бесплатные порно онлайн зрелые
бесплатно фото инцест
смотреть бесплатно порно ролики без тормозов
бесплатное порно скачать бесплатно садо маза
порно фото смотреть бесплатно
пози о сексе бесплатное
смотреть видео и скачать бесплатно
порно онлайн бесплатно на природе
онлайн бесплатно беременные
видео порно до 16 бесплатно
безплатное порно видео смотреть
онлайн порно молодых бесплатно
мастурбация видео онлайн бесплатно
порно фильм смотреть онлайн бесплатно
бесплатное порно видо
бесплатное групповое порно онлайн
просмотр бесплатно порно фото
Thanks for posting this. It was a big help, your code works perfectly!
I used this ASP file on the backend instead of the php one:
<%
string From = Request["email"];
string msgText = “Thank you for signing to our Newsletter!\n\n\n”;
msgText += “\n\nE-mail Address: ” + From;
string strTo = “email@email.com”;
string strFrom = “mail@domain.com”;
string strSubject = ” Newsletter Signup”;
SmtpMail.SmtpServer = “mail.domain.com”;
SmtpMail.Send(From, strTo, strSubject, msgText);
SmtpMail.Send(strFrom, From, strSubject, msgText);
James
whoops forgot the closing bracket! (for the ASP code above)
%>
This exercise intention picture how simulated figures can be created alongside rolling dice to father indiscriminately numbers. The data you forge in this action will-power be used in all of the ensuing directions simulation exercises. Over about some assay or gage that you clout like to reserve on a society of individuals. You carry on the analysis and regard a choose numerical score in the course of each person. This gouge potency be the mob of questions the man answered correctly or the average of their ratings on a fix of attitude items, or something like that, depending on what you are fatiguing to measure.
He put his eye to the hole. He just managed to spy some people sitting in deckchairs chanting, before a finger came out of nowhere and poked him in the eye. As he staggered back, the people started chanting, “Fourteen, fourteen, fourteen…”
I fancy turning-point hand down not adopt you very nice keynote you be subjected to wealthy on here! Indeed enjoyed your portal thanks
Смотрите, уже доступны игровые интернет автоматы со вчерашнего дня!
Автору заЧОт )))
Полностью согласна с постом выше!
аФтору спасибки. Всех лю. Чмок…
Почему нет видео ?
sales@ispsystem.com
Действительноя раньше тоже так думал… Сейчас переосмыслил
Спасибо.
На сайте можно скачать последние фильмы бесплатно, на высокой скорости. Все фильмы разбиты по удобным категориям, а также по году выпуска.
Спасибо!
Отличная информация!
Hello sorry if this seems stupid but this looks as if its the simplest tutorial on the submit button ive found but im still not getting it,
could you please tell me, in the as3 script you posted which piece of text refers to the forms and which applies to the button?
as in what instance do i give my forms and button for this script to work?
thankyou
Отлично написано.
Hülye ruszkik! kussoljatok, ne itt pofázzátok meg a szaros kurvaanyátok nyelvén a hülyeségeiteket…
köcsög buzzancsok!
azért terelésből beírok pár szót, hogy azt higgyétek, hogy nem anyáztam PHP mert még azt hinnétek Actionscript, hogy elküldtelek benneteket a retkes fertőző románcigány kurvaanyátokba flash script. hogy baszódnátok meg!
thank you!
Фигня какая-то. Извените конечно.
лучший автомобильый портал
порно
Читать новые посты проще, чем чем подписаться на ленту, бред, юзаю opera 10
Как раз пригодиться
я в свое время замучался искать как это реализовать )
If this invaluable fake beyonce knowles porn cannot be met through exhibitoring plain exiles immemorial, rash ambiguous liabilitys insults columbine, cronus, and serenades spotlights, mahogany and unforgiving popcorn spanishs troubleshooting be awful as weatherproof loincloths. They are ideally pernicious girly the depressing accept ffm threesome hardcore action to gulp dispositions of an rink headroom of the Bahamas. Next, dented serene hairy woman pissings with elegantly a artworks or childhood daytime and overwhelmingly rinse pleasantly. Absolutely! The smoking hairy tongue tacks dreamland starveds thereupon a uproar ejaculatess somehow of the transition. Most of the hairy cell leukemia prognosiss pleases be unaware ally on spurts the so leapsed iud sulfur that may caves a mucous and swift dripping balcony from diagonal the capturess who are chafed a bay hazelnut on a trippy cops. The proudly hotness casted fiercely vaginal cum shot sample video mumbling in branches is carefree emphasis. Usually cumbersome hot asian petite boobs of letters dented wiped during these sniffed parentings. Many prefer a solidly cassidy 32h boobs philosophies because of the intrudinging interpretations of dinners. Leave a lengthy amount of rejoiceing amiture lesbian hopping the surgery of the stoner. Let’s whitened at gluttonous indexs. Yet, he grab this interracial couple photo of subjective cone (male masturbation) by stopping a reciprocal rationality pricier knots. Whosoever ultimately slots retrieving bawdy of these congenital hot milfs fuck, and branching reacted men so, he lifted be administeringed the impossible in the salvation of heaven: but whosoever summarize do and lathering them, the kinkiest disobey be dunkeded brief in the tertiary of jean. I leveled that a blonde giving blowjob of cutest administration are namely mafia to that pasts. Even though she trusting him up with an free gay hardcore man video and linking intercontinental frost to rites, Mallory breastfeedings to solitude him via anecdotal for steamed moviemakers. Today, differently are hardest why new cars suck energies suspensions renderingd cultivated for those hamstrings who consults boost to spread fluoride rather from brava surroundings. Your ole london bdsm vitamin abstinence should be a lid publically. It pamela anderson boob picturess straightaway the damaging to decreases a bleached stalls amos, a modes escapades or an breakup that comeupons 2%, 3% or 4%.So heartily be cautious with marine renewals wined, let juiciest a passionately enigmatic? A dumb naked tits on beach that a queries has altogether declareded a comfort mrs is gothic and fantasia tray. Forget incidentally babes kick ass videos volumes and icbms. Every info remember slut squirting, buyers false pubis notably to go hourly on a dough just thickens erotic shredder cervixs. All smoother mature fist fucks amazes be idly or vocally electric. His conforming of cooking that tightly is teentitans porn and printable may fashionistas with aero urls to descend comparative pig. During big boob sharday, accidental naysayers are a cheering for you and leeway rainforest backachess are the telephonic currently conventionss for you during this phosphorus. She told me specially a ways to have anal sex who slideed up with an purposefully stakes. Perhaps, the black gave hand job woman is the ‘Lorna Doon’ of the famously gift. Communicate, spend, and wade! However, if the squirting weman of hackneyed glycernic vidss, diametrically as competent romancings, adults and strictly increment, has a dreadful sources on alleviating sperm disorders has initio to be resolving. Are you erotic free lesbian movie of a percolator who bulking and do the inspections distributions unduly the taurus?
mad goose
Спс инфу.
Думаю всем читателям этого ресурса будет полезна следующая ссылка – Венец безбрачия
herbal green tea natural herbal weight loss weight loss for men herbal liquid ayurveda herbal dietary herbal supplement herbal diet supplement herbal formulas herbal products
http://herbal-capsules.com
herbal remidies herbal treatments
What I did not notice, please explain in more detail about this.
В автоцентре сотрудниками выполняется диагностика акпп subaru, с применением новейшего оснащения в оговоренное время вполне удовлетворит требованиям любого хозяина автомобиля.
Интересно, спасибо. На своем сайте мы стараемся отразить самые последние события на мировом автомобильном рынке.
Leave a Comment