Good simple website Send e-Mail form

djheater

Lifer
Mar 19, 2001
14,637
2
0
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..

 

Crusty

Lifer
Sep 30, 2001
12,684
2
81
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.
 

djheater

Lifer
Mar 19, 2001
14,637
2
0
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...