thanks for your post and i will take your advice into consideration when posting future messages.
my server does allow php. i had a website that i redesigned and this is the script for the...
Type: Posts; User: calief; Keyword(s):
thanks for your post and i will take your advice into consideration when posting future messages.
my server does allow php. i had a website that i redesigned and this is the script for the...
package
{
import flash.display.*;
import flash.text.*;
public dynamic class buttonMc extends flash.display.MovieClip
{
public function buttonMc()
{
...
<?php
$contact_name = $_POST['name'];
$contact_email = $_POST['email'];
$contact_subject = $_POST['subject'];
$contact_message = $_POST['message'];
if( $contact_name == true )
{
$sender =...
as3 cont:
public function launch():void
{
mainBg.width = 0;
mainBg.height = stage.stageHeight - 185;
mainBg.x = (stage.stageWidth - 960) / 2;
...
I have a flash contact form that when I click the submit button the form says message sent but the message doesn't go to my email inbox. The as3 code and php are listed below.
package contact_fla ...