Problem u php,ajmo php programeri POMAGAJTE

zeenmc

Aktivan član
Poruka
1.052
Ovu skriptu sam nasao na internetu i nesto nece da funkcionise digao sam Apache,php,mySQL i sve radi OK samo ovo nece da funkcionise.
Sajt sa kog sam skinuo skripte je dole:

http://www.apptools.com/

<html>
<head>
<title>Contact Form</title>
<meta http-equiv="Content-Type"
content="text/html; charset=iso-8859-1">
</head>
<body>
<?php
if ($_SERVER['REQUEST_METHOD'] != 'POST'){
$me = $_SERVER['PHP_SELF'];
?>
<form name="form1" method="post"
action="<?php echo $me;?>">
<table border="0" cellspacing="0" cellpadding="2">
<tr>
<td>Name:</td>
<td><input type="text" name="Name"></td>
</tr>
<tr>
<td>Subject</td>
<td><input type="text" name="Subject"></td>
</tr>
<tr>
<td valign="top">Message:</td>
<td><textarea name="MsgBody"></textarea></td>
</tr>
<tr>
<td>&</td>
<td><input type="submit" name="Submit"
value="Send"></td>
</tr>
</table>
</form>
<?php
} else {
error_reporting(0);
$recipient = 'nekaadresa@domrn.com';
$subject = stripslashes($_POST['Subject']);
$from = stripslashes($_POST['Name']);
$msg = "Message from: $from\n\n".stripslashes($_POST['MsgBody']);
if (mail($recipient, $subject, $msg))
echo nl2br("<b>Message Sent:</b>
To: $recipient
Subject: $subject
Message:
$msg");
else
echo "Message failed to send";
}
?>
</body>
</html>

=====================================================


mail("recipient@domain.com",
"This is the message subject",
"This is the message body");

Ovo je najprostija funkcija za slanje na mail,ali ni ona nece
=====================================================
 

Back
Top