Hey all! I have a flash interface form, with a PHP script. The form works! But, I can’t seem to figure out how to make some parts of the form “required to fill out” Here’s the PHP file.. Any idea’s?
Thanks !!!THE PHP SCRIPT IS BELOW!!!
<?php
$TextVariable = '&results=';
$response = 'Data Sent. Thank You..';
echo $TextVariable;
echo $response;
mail ("contact@yourwebsite.com", "Feed Back Entry", "
Flash Form Response:
yourname: $yourname
song: $song
comments: $comments
Sent From : $REMOTE_ADDR
"
;
?>
Thanks !!!THE PHP SCRIPT IS BELOW!!!
<?php
$TextVariable = '&results=';
$response = 'Data Sent. Thank You..';
echo $TextVariable;
echo $response;
mail ("contact@yourwebsite.com", "Feed Back Entry", "
Flash Form Response:
yourname: $yourname
song: $song
comments: $comments
Sent From : $REMOTE_ADDR
"
?>