...

Mail Form QUA

1234
07-24-2002, 07:48 AM
help my mail system
hi how are you doing?
I try to run this E-mail system,but it is not working.
my php is 4.2 and My e-mail is STMP so it should be ok
my phpeditor says"Failed to Connect in c:\itohideo\ito2.php on line 29";

One more QUA! Could you tell me when I forget my Pwd, I just send my E-mail. And Pwd goes to my acount.

HOw could you do it. Please send me codes or site which will help me.

E-mail system
save as PK.php
<html>
<body>
<form action="ito2.php" method="post">
<table border="1">
<tbody>
<tr>
<td>Name</td>
<td><input type="text" size="50" maxlength="50" name="yourname">
</td>
</tr>

<tr>
<td>Mailaddress</td>
<td><input type="text" size="50" maxlength="200" name="mailadrs">
</td>
</tr>

<tr>
<td>Mail Title</td>
<td><input type="text" size="50" maxlength="200" name="subject">
</td>
</tr>
<tr>
<td>Comments</td>
<td><textarea ros="10" cols="80" name="msg"></textarea>
</td>
</tr>
</tbody>
</table>
<br>
<input type="submit" name="submit" value="send">
<input type="reset" name="reset" value="reset">
</form>

</body>
</html>

save as ito2.php



<?php
$sendto = "itohideo@domaindlx.com";
$yourname = $_POST['yourname'];
$mailadrs = $_POST['mailadrs'];
$subject = $_POST['subject'];
$msg = $_POST['msg'];
$no = 0;
if ($yourname == "") {
print("Please Enter your Name<br>\n");
$no = 1;
}
if ($mailadrs == "") {
print("Please Enter your mailad<br>\n");
$no = 1;
}
if($subject == "") {
print("Please Enter your title<br>\n");
$no = 1;
}
if ($msg == "") {
print("Please Enter your comments<br>\n");
$no = 1;
}
if ($no != 1) {
$from = "From:" .$yourname. "\n";
mail($sendto, $subject, $msg, $from);
} else {
echo "Mail did not send.";
}
?>


Thank you for helping and time

bye
red large

Robbie
07-24-2002, 09:51 AM
/me is thinking that you run this on your own pc?

if so, go to... uh... php.ini , find something like this:

[mail]


after that you can fill in a mail server.
then save the file and reboot your apache.



EZ Archive Ads Plugin for vBulletin Copyright 2006 Computer Help Forum