lo so che non è malvagio ma non so proprio da dove iniziare...
ascoltate ho modificato il php_mailme (script già fatto scaricato da questo sito)
però non và.. --->
http://internetjob.it/aiutoform.htm
e ho inserito la pag php ordine.php nella directory del sito vi copio il codice che ho modificato:
<?php
extract($HTTP_GET_VARS);
extract($HTTP_POST_VARS);
if ($action == "send")
{
include("config.php");
$to = $ademail;
$from = $_POST['from'];
$name = $_POST['name'];
$subject = $_POST['subject'];
$account = $_POST['account'];
$pagamento = $_POST['pagamento'];
$message = $_POST['message'];
$to = trim($to);
$from = trim($from);
$name = trim($name);
$subject = trim($subject);
$account = trim($account);
$pagamento = trim($pagamento);
$message = trim($message);
if (empty($to))
{
$ermessage = "Error: Email address to can not be blank, Please enter your email address in the config file!";
include("_inc/ordine_error.htm"); exit();
}
if (empty($from))
{
$ermessage = "Error: Email address can not be blank, Please enter your email address!";
include("_inc/ordine_error.htm"); exit();
}
if (!ereg('^[-!#$%&\'*+\\./0-9=?A-Z^_`a-z{|}~]+'.
'@'.
'[-!#$%&\'*+\\/0-9=?A-Z^_`a-z{|}~]+\.'.
'[-!#$%&\'*+\\./0-9=?A-Z^_`a-z{|}~]+$', $from))
{
$ermessage = "Error: Invalid Email address, Please re-enter your email address!";
include ("_inc/ordine_error.htm"); exit;
}
if (empty($name))
{
$ermessage = "Error: Metti il tuo Nome!";
include("_inc/ordine_error.htm"); exit();
}
if (empty($subject))
{
$ermessage = "Error: Metti il tuo Cognome!";
include("_inc/ordine_error.htm"); exit();
}
if (empty($account))
{
$ermessage = "Error: non hai inserito se possiedi un account ebay, inserisci la risposta";
include("_inc/ordine_error.htm"); exit();
}
if (empty($pagamento))
{
$ermessage = "Error: non hai inserito il metodo di pagamento, inseriscilo";
include("_inc/ordine_error.htm"); exit();
}
if (empty($message))
{
$ermessage = "Error: inserisci i codici o il codice del banner che vuoi ordinare";
include("_inc/ordine_error.htm"); exit();
}
$footer = "\n_______________________________________\nMail Me!, php script by
http://www.syndikut.org\nCopyright 2005 Syndikut.org";
$message = $message."\n".$footer;
$send = mail($to, $subject, $message, "From: {$from}");
if ($send)
{
include("_inc/ordine_mandato.htm"); exit();
}
else
{
$ermessage = "Error: You message has not been sent, please try again";
include("_inc/ordine_error.htm"); exit();
}
}
else
{
include("_inc/ordine.htm");
}
?>
------------
CHE DITE???
------------