• User Newbie

    Campo messaggio vuoto

    Ciao a tutti. E' la prima volta che provo a realizzare una form mail html+php, apparentemente non mi sembrava difficile però non funziona come vorrei...il campo messaggio resta vuoto, però non riesco a trovare l'errore nel codice....vista anche la mia inesperienza)
    ....qualcuno più esperto può dare un occhiata....grazie)))

    [PHP]<?php
    $field_name = $_POST['cf_name'];
    $field_email = $_POST['cf_email'];
    $field_oggetto = $_POST['cf_oggetto'];
    $field_message = $_POST['cf_message'];

    $mail_to = '[email protected]';
    $subject = 'Messaggio dal Sito '.$field_name;

    $body_message = 'Da: '.$field_name."\n";
    $body_message .= 'E-mail: '.$field_email."\n";
    $body_message .= 'Oggetto: '.$field_oggetto."\n";
    $body_message .= 'Messaggio: '.$field_message;

    $headers = 'Da: '.$field_email."\r\n";
    $headers .= 'Reply-To: '.$field_email."\r\n";

    $mail_status = mail($mail_to, $subject, $body_message, $headers);

    if ($mail_status) { ?>
    <script language="javascript" type="text/javascript">
    alert('Grazie per averci contattato. Ti risponderemo il prima possibile.');
    window.location = 'contatti.html';
    </script>
    <?php
    }
    else { ?>
    <script language="javascript" type="text/javascript">
    alert('Message failed.');
    window.location = 'contatti.html';
    </script>
    <?php
    }
    ?>[/PHP]


  • ModSenior

    Ciao mxxxo,
    puoi postare anche il form?


  • User Newbie

    sì allego la parte relativa al form nella pagina html
    [HTML]<h2>Modulo Contatti</h2>
    <form id="ContactForm" action="contact.php" method="post">
    <div>
    <div class="wrapper">
    <span>Nome:</span>
    <input type="text" class="input" name="cf_name" >
    </div>
    <div class="wrapper">
    <span>Email:</span>
    <input type="text" class="input" name="cf_email" >
    </div>
    <div class="wrapper">
    <span>Oggetto:</span>
    <input type="text" class="input" name="cf_oggetto" >
    </div>
    <div class="textarea_box">
    <span>Messaggio:</span>
    <textarea name="textarea" cols="50" rows="10" name="cf_message"></textarea>
    </div>
    <input type="submit" value="Invia" class="button">
    </div>
    </form>[/HTML]


  • ModSenior

    Hai impostato 2 attributi name al tag textarea.


  • User Newbie

    grazie mille))) ho già testato e funziona.........thanks!!!!!!