Guest gijs Postado Janeiro 17, 2004 Denunciar Share Postado Janeiro 17, 2004 Hello does anyone here know how to integrate php in flash like in the forum on http://www.nuffsaid.nl ?Please answer in english.... Citar Link para o comentário Compartilhar em outros sites More sharing options...
0 Eddie_666 Postado Janeiro 17, 2004 Denunciar Share Postado Janeiro 17, 2004 I'll try to translate a post by jls666 in http://scriptbrasil.com.br/forum/index.php...php\+flashthe question was how to send mail integrating php and flash, but it can be used to any kind of application.You have two options: first: you can use the php mailto function:...on (release) { getURL("mailto:email@server.com.br"); } second: you can use dynamic page (like php, asp or cold fusion) here is an exemple using php: <? $to = "user@domain.com"; $subject = "Only testing"; $head = "MIME-Version: 1.0\n"; $head .= "Content-type: text/html; charset=iso-8859-1 \n"; $head .= "From: <$email_destino> \n"; $head .= "Reply-To: <$email_destino> \n"; $body = "$anything"; $body = wordwrap($body, 72); mail($to, $subject, $body, $head) or die ("Error while trying to send message"); echo "Your message was successfully sent"; ?> Finally, on flash button, use the following code on (release) { getURL("mail.php", "", "POST"); } -----------------------------------I hope I've helped you. Citar Link para o comentário Compartilhar em outros sites More sharing options...
0 John Doe Postado Janeiro 18, 2004 Denunciar Share Postado Janeiro 18, 2004 Hello does anyone here know how to integrate php in flash like in the forum on http://www.nuffsaid.nl ?Please answer in english.... I found an article about FLASH + PHP , I hope you like it. (I didn't read it , but I think it's a good one cause it is in macromedia's website)http://www.macromedia.com/devnet/mx/flash/...lashmx_php.html Citar Link para o comentário Compartilhar em outros sites More sharing options...
0 Guest Gijs Postado Janeiro 18, 2004 Denunciar Share Postado Janeiro 18, 2004 Thank you very much for your help!! Citar Link para o comentário Compartilhar em outros sites More sharing options...
0 Eddie_666 Postado Janeiro 18, 2004 Denunciar Share Postado Janeiro 18, 2004 Please, register to our forum. Citar Link para o comentário Compartilhar em outros sites More sharing options...
0 paulocholla Postado Janeiro 18, 2004 Denunciar Share Postado Janeiro 18, 2004 I'll try to translate a post by jls666 in http://scriptbrasil.com.br/forum/index.php...php\+flashthe question was how to send mail integrating php and flash, but it can be used to any kind of application.You have two options: first: you can use the php mailto function:...on (release) { getURL("mailto:email@server.com.br"); } second: you can use dynamic page (like php, asp or cold fusion) here is an exemple using php: <? $to = "user@domain.com"; $subject = "Only testing"; $head = "MIME-Version: 1.0\n"; $head .= "Content-type: text/html; charset=iso-8859-1 \n"; $head .= "From: <$email_destino> \n"; $head .= "Reply-To: <$email_destino> \n"; $body = "$anything"; $body = wordwrap($body, 72); mail($to, $subject, $body, $head) or die ("Error while trying to send message"); echo "Your message was successfully sent"; ?> Finally, on flash button, use the following code on (release) { getURL("mail.php", "", "POST"); } -----------------------------------I hope I've helped you. ô, da hora isso!! Citar Link para o comentário Compartilhar em outros sites More sharing options...
Pergunta
Guest gijs
Hello does anyone here know how to integrate php in flash like in the forum on http://www.nuffsaid.nl ?
Please answer in english....
Link para o comentário
Compartilhar em outros sites
5 respostass a esta questão
Posts Recomendados
Participe da discussão
Você pode postar agora e se registrar depois. Se você já tem uma conta, acesse agora para postar com sua conta.