PHP Form to HTML?

liunx

Guest
Hello,<br />
I have a PHP form script that I did (1st time) and I cant get my submit button to work. (wont send info to my email) When you hit the submit it says "error cant find server".I want to convert my PHP to all HTML (php too hard 4 me) I was wondering if someone could do this for me?? Let me know the charge if any. I will attach file here. Let me know if any other info is needed. Thank you very much!!!<br />
<br />
<!-- e --><a href="mailto:[email protected]">[email protected]</a><!-- e --> for questions :-)<!--content-->Originally posted by suzzane <br />
I want to convert my PHP to all HTMLYou will then have to use a mailto in your forms action, like this:<br />
<br />
<form action="mailto:[email protected]" method="post" enctype="text/plain"><br />
<br />
This is, however, about the worst way to send a form back to yourself. It will cause alerts to popup, etc...<!--content-->Hello,<br />
Yes I really didn't want to use the mailto but I am having such a problem with the dang PHP. Like I said it wont send form to my email. Was working once have no clue what I did. Maybe it's my server?? hmmm If I could get the PHP to work I would be thrilled but about ready to rip my hair out hehehe!!<br />
What about this code thats in my script??<br />
<br />
=<? echo $_SERVER['PHP_SELF']; ?> <br />
the $_SERVER['PHP_SELF'] <br />
<br />
And what does this mean:<br />
<br />
returns the absloute path to the file. Try hardcoding the file name in the action. (does this mean my site <!-- w --><a class="postlink" href="http://www.metrocast.net/timdee/">www.metrocast.net/timdee/</a><!-- w --><br />
<br />
Thank you for the help I am new at this :-)<!--content-->
 
Back
Top