• We’re currently investigating an issue related to the forum theme and styling that is impacting page layout and visual formatting. The problem has been identified, and we are actively working on a resolution. There is no impact to user data or functionality, this is strictly a front-end display issue. We’ll post an update once the fix has been deployed. Thanks for your patience while we get this sorted.

Good simple website Send e-Mail form

I don't need anything fancy, I'm doing a little pro-bono for a friend and they wnat to switch form a simple Mailto URL to an actual form..

 
create a file on your site with a .php extension with

<? echo "Testing for php support."; ?>

as the only content of the file and goto to the page in your browser. If you see "Testing for php support." and not the whole content then you have php support.
 
Originally posted by: MCrusty
create a file on your site with a .php extension with

<? echo "Testing for php support."; ?>

as the only content of the file and goto to the page in your browser. If you see "Testing for php support." and not the whole content then you have php support.

Thanks... I also found I could use:

<?php
phpinfo();
?>

to check the version info... 4.1 or greater is necessary to run the php generated from the link above.. it appears to be working out pretty well.

Thanks for your help...
 
Back
Top