I Just Post it this and it works fine. BUT,
Now I have a Question if some can Help me,
*Does anyone know how to Redirect - Direct?
Without the No "Thank you" White Page.
I am Grateful for the Submission, but I think we both Understood and
Moved on and no returning expression is Necessery. ;)
What Can I Do or Cut or Add to make it Direct? (Back to my Submit page)
</SCRIPT>
<META HTTP-EQUIV="Refresh" Content="0; URL=contact_us.html">
Thank you.
FTJr.
-------------------------------------------------------
I found out how to do it!!!
Exact bluevoda php code:
(Red are my Entered Values)
-------------------------------------------------------------------------------------------------------------------
<HTML>
<HEAD>
<TITLE>Succesfully processed your order</TITLE>
</HEAD>
<BODY>
<H2>Thank you for Contacting us - Please Click your Back Button!</H2>
<?PHP
$email = $HTTP_POST_VARS[email];
$mailto = "franktjr@familyrealtyinvestments.com";
$mailsubj = "From the Contact us Form";
$mailhead = "From: $email\n";
reset ($HTTP_POST_VARS);
$mailbody = "Values submitted from web site form:\n";
while (list ($key, $val) = each ($HTTP_POST_VARS))
{
$mailbody .= "$key : $val\n";
}
mail($mailto, $mailsubj, $mailbody, $mailhead);
</SCRIPT>
<META HTTP-EQUIV="Refresh" Content="0; URL=contact_us.html">
?>
</BODY>
</HTML>
------------------------------------------------------------------------------------------------------------
I Just added this Code and Put it Exactly where it is:
Replace the Red with your Values:
</SCRIPT>
<META HTTP-EQUIV="Refresh" Content="0; URL=contact_us.html">
I Hope this Helps anyone Out there!!!
Have a Good One!
Francisco T, Jr.
Now I have a Question if some can Help me,
*Does anyone know how to Redirect - Direct?
Without the No "Thank you" White Page.
I am Grateful for the Submission, but I think we both Understood and
Moved on and no returning expression is Necessery. ;)
What Can I Do or Cut or Add to make it Direct? (Back to my Submit page)
</SCRIPT>
<META HTTP-EQUIV="Refresh" Content="0; URL=contact_us.html">
Thank you.
FTJr.
-------------------------------------------------------
I found out how to do it!!!
Exact bluevoda php code:
(Red are my Entered Values)
-------------------------------------------------------------------------------------------------------------------
<HTML>
<HEAD>
<TITLE>Succesfully processed your order</TITLE>
</HEAD>
<BODY>
<H2>Thank you for Contacting us - Please Click your Back Button!</H2>
<?PHP
$email = $HTTP_POST_VARS[email];
$mailto = "franktjr@familyrealtyinvestments.com";
$mailsubj = "From the Contact us Form";
$mailhead = "From: $email\n";
reset ($HTTP_POST_VARS);
$mailbody = "Values submitted from web site form:\n";
while (list ($key, $val) = each ($HTTP_POST_VARS))
{
$mailbody .= "$key : $val\n";
}
mail($mailto, $mailsubj, $mailbody, $mailhead);
</SCRIPT>
<META HTTP-EQUIV="Refresh" Content="0; URL=contact_us.html">
?>
</BODY>
</HTML>
------------------------------------------------------------------------------------------------------------
I Just added this Code and Put it Exactly where it is:
Replace the Red with your Values:
</SCRIPT>
<META HTTP-EQUIV="Refresh" Content="0; URL=contact_us.html">
I Hope this Helps anyone Out there!!!
Have a Good One!
Francisco T, Jr.