GoFuckYourself.com - Adult Webmaster Forum

GoFuckYourself.com - Adult Webmaster Forum (https://gfy.com/index.php)
-   Fucking Around & Business Discussion (https://gfy.com/forumdisplay.php?f=26)
-   -   Need some help with this little PHP script (https://gfy.com/showthread.php?t=492520)

Realpascal 07-15-2005 01:09 AM

Need some help with this little PHP script
 
It won't work with me.. am I overlooking something here ?

Form:
Code:

<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"
"http://www.w3.org/TR/html4/loose.dtd">
<html>

<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
<title>Contact Us</title>
<head></head>

<body>
<FORM METHOD=post ACTION="contactform.php">
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<table width="800" border="0" align="center" cellpadding="0" cellspacing="0">
  <tr>
    <td>&nbsp;</td>
    <td><div align="right">
      <p><img src="bel_small.gif" width="250" height="79" border="0"></p>
      <p>&nbsp;</p>
      <p>&nbsp;</p>
    </div></td>
  </tr>
  <tr>
    <td colspan="2">
        <table width="600" border="0" align="center" cellpadding="2" cellspacing="0">
  <tr>
    <td colspan="2"><span class="style1">Contact us here </span></td>
  </tr>
  <tr>
    <td width="83">&nbsp;</td>
    <td width="417">&nbsp;</td>
  </tr>
  <tr>

    <td><span class="style2">Name</span></td>
    <td><input type="text" name="name" size="40"></td>
  </tr>
  <tr>
    <td><span class="style3">Email</span></td>
    <td><input type="text" name="email" size="40"></td>
  </tr>
  <tr valign="top">
    <td><span class="style3">Comment &nbsp;</span></td>
    <td><textarea name="comment" cols="60" rows="10"></textarea></td>
  </tr>
  <tr>
    <td>&nbsp;</td>
    <td>
      <div align="center">
        <input type="submit" name="Submit">
      </div></td>
  </tr>
</table>
        </td>
  </tr>
</table>
<p align="right">&nbsp;</p>
<p align="right">&nbsp;</p>
<p align="right">&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>

<p>&nbsp;</p>
</body>
</html>

PHP mailscript
Code:

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html>
<head></head>
<title>Contact Result</title>

<body>

<div align="center">

  <table width="800" border="0" cellspacing="0" cellpadding="0">
    <tr>
      <td colspan="2"><div align="center"><img src="bel_small.gif" width="250" height="79" border="0"></div></td>
    </tr>
  </table>

 
  <hr align="center" width="800"> 
 
 
<?php
$formsent = mail("[email protected]", "Info req", "Submit by: $name\r\nEmail: $email\r\nComment: $comment");
if($formsent hahahaha 1)
{
          print("<p>Your comment has been sent. We will reply soon.</p>");
}
else
        print("<p>Sorry, there's something wrong with the submitted form. Please try again</p>");
?>
 
 
   
 
</div>
</body>
</html>

Please help me out here.. :error

Realpascal 07-15-2005 01:24 AM

Just for info: this is what i get in my email:

Quote:

Submit by
Email
Comment
Please help... :helpme

darksoul 07-15-2005 01:34 AM

very ugly code.

anyway you need
register_globals = On;
in your php.ini

Realpascal 07-15-2005 01:37 AM

Quote:

very ugly code
I know.. but whatever works. I'm not an experienced PHP programmer. Maybe one day I'll be, and probably agree with you.

Thanks for helping me with this man ! I'll get it fixed.. :thumbsup

chadglni 07-15-2005 01:46 AM

Quote:

Originally Posted by darksoul
very ugly code.

anyway you need
register_globals = On;
in your php.ini

What he said... or add

$name=$_POST['name'];
$email=$_POST['email'];
$comment=$_POST['comment'];

right after your opening <?php tag

Realpascal 07-15-2005 01:52 AM

Thanks man !! :thumbsup

Damian_Maxcash 07-15-2005 02:06 AM

You should close the form tag in the HTML as well - thats not the problem but it should be done

Realpascal 07-15-2005 02:18 AM

Done. Thanks !


All times are GMT -7. The time now is 04:30 AM.

Powered by vBulletin® Version 3.8.8
Copyright ©2000 - 2025, vBulletin Solutions, Inc.
©2000-, AI Media Network Inc123