begin process at 2012 05 28 12:14:50
  Trouver un code source :
 
dans
 
Accueil > Forum > 

PHP

 > 

Divers

 > 

Débutant(e)

 > 

Aide formulaire php


Derniers messages déposésPoser une question dans le forum ou lancer une discussion

Aide formulaire php

vendredi 26 mars 2010 à 10:56:49 | Aide formulaire php

syl1493

Bonjour,

J'essaie d'adapter un script d'envoi d'un formulaire d'inscription avec pièces jointes.
J'ai réussi à mettre en place l'envoi de 2 pièces jointes mais lorsque je veux adapter ce script à mon formulaire html, le mail est bien envoyé avec les pièces jointes mais sans les infos entrées dans les champs du formulaire...

Voici le script php :

<?
/* PARAMETRAGE DU SCRIPT */
/* ENTREZ VOTRE ADRESSE EMAIL ENTRE LES GUILLEMETS*/
$dest="sb@netentreprise.net";
$reponse=StripSlashes("Merci de votre confiance");
/* FIN DU PARAMETRAGE */
/*
Le script utilise une version de la classe Mail() développée par Leo West (lwest.free.fr)
DESCRIPTION
this class encapsulates the PHP mail() function.
implements CC, Bcc, Priority headers
*/class Mail
{
var $sendto= array();
var $from, $msubject;
var $acc= array();
var $abcc= array();
var $aattach= array();
var $priorities= array( '1 (Highest)', '2 (High)', '3 (Normal)', '4 (Low)', '5 (Lowest)' );
// Mail contructor
function Mail()
{
$this->autoCheck( true );
}
/* autoCheck( $boolean )
* activate or desactivate the email addresses validator
* ex: autoCheck( true ) turn the validator on
* by default autoCheck feature is on
*/function autoCheck( $bool )
{
if( $bool )
$this->checkAddress = true;
else
$this->checkAddress = false;
}
/* Subject( $subject )
* define the subject line of the email
* $subject: any valid mono-line string
*/function Subject( $subject )
{
$this->msubject = strtr( $subject, "\r\n" , " " );
}
/* From( $from )
* set the sender of the mail
* $from should be an email address
*/function From( $from )
{
if( ! is_string($from) ) {
echo "Class Mail: error, From is not a string";
exit;
}
$this->from= $from;
}
/* To( $to )
* set the To ( recipient )
* $to : email address, accept both a single address or an array of addresses
*/function To( $to )
{
// TODO : test validité sur to
if( is_array( $to ) )
$this->sendto= $to;
else
$this->sendto[] = $to;
if( $this->checkAddress == true )
$this->CheckAdresses( $this->sendto );
}
/* Cc()
* set the CC headers ( carbon copy )
* $cc : email address(es), accept both array and string
*/function Cc( $cc )
{
if( is_array($cc) )
$this->acc= $cc;
else
$this->acc[]= $cc;
if( $this->checkAddress == true )
$this->CheckAdresses( $this->acc );
}
/* Bcc()
* set the Bcc headers ( blank carbon copy ).
* $bcc : email address(es), accept both array and string
*/function Bcc( $bcc )
{
if( is_array($bcc) ) {
$this->abcc = $bcc;
} else {
$this->abcc[]= $bcc;
}
if( $this->checkAddress == true )
$this->CheckAdresses( $this->abcc );
}
/* Body()
* set the body of the mail ( message )
*/function Body( $body )
{
$this->body= $body;
}
/* Send()
* fornat and send the mail
*/function Send()
{
// build the headers
$this->_build_headers();
// include attached files
if( sizeof( $this->aattach > 0 ) ) {
$this->_build_attachement();
$body = $this->fullBody . $this->attachment;
}
// envoie du mail aux destinataires principal
for( $i=0; $i< sizeof($this->sendto); $i++ ) {
$res = mail($this->sendto[$i], $this->msubject,$body, $this->headers);
// TODO : trmt res
}
}
/* Organization( $org )
* set the Organisation header
*/function Organization( $org )
{
if( trim( $org != "" ) )
$this->organization= $org;
}
/* Priority( $priority )
* set the mail priority
* $priority : integer taken between 1 (highest) and 5 ( lowest )
* ex: $m->Priority(1) ; => Highest
*/function Priority( $priority )
{
if( ! intval( $priority ) )
return false;
if( ! isset( $this->priorities[$priority-1]) )
return false;
$this->priority= $this->priorities[$priority-1];
return true;
}
/* Attach( $filename, $filetype )
* attach a file to the mail
* $filename : path of the file to attach
* $filetype : MIME-type of the file. default to 'application/x-unknown-content-type'
* $disposition : instruct the Mailclient to display the file if possible ("inline") or always as a link ("attachment")
* possible values are "inline", "attachment"
*/function Attach( $filename, $filetype='application/x-unknown-content-type', $disposition = "inline" )
{
// TODO : si filetype="", alors chercher dans un tablo de MT connus / extension du fichier
$this->aattach[] = $filename;
$this->actype[] = $filetype;
$this->adispo[] = $disposition;
}
/* Get()
* return the whole e-mail , headers + message
* can be used for displaying the message in plain text or logging it
*/function Get()
{
$this->_build_headers();
if( sizeof( $this->aattach > 0 ) ) {
$this->_build_attachement();
$this->body= $this->body . $this->attachment;
}
$mail = $this->headers;
$mail .= "\n$this->body";
return $mail;
}
/* ValidEmail( $email )
* return true if email adress is ok - regex from Manuel Lemos (mlemos@acm.org)
* $address : email address to check
*/function ValidEmail($address)
{
if( ereg( ".*<(.+)>", $address, $regs ) ) {
$address = $regs[1];
}
if(ereg( "^[^@ ]+@([a-zA-Z0-9\-]+\.)+([a-zA-Z0-9\-]{2}|net|com|gov|mil|org|edu|int)\$",$address) )
return true;
else
return false;
}
/* CheckAdresses()
* check validity of email addresses
* if unvalid, output an error message and exit, this may be customized
* $aad : array of emails addresses
*/function CheckAdresses( $aad )
{
for($i=0;$i< sizeof( $aad); $i++ ) {
if( ! $this->ValidEmail( $aad[$i]) ) {
echo "Class Mail, method Mail : invalid address $aad[$i]";
exit;
}
}
}
/********************** PRIVATE METHODS BELOW **********************************/
/* _build_headers()
* [INTERNAL] build the mail headers
*/function _build_headers()
{
// creation du header mail
$this->headers= "From: $this->from\n";
$this->to= implode( ", ", $this->sendto );
if( count($this->acc) > 0 ) {
$this->cc= implode( ", ", $this->acc );
$this->headers .= "CC: $this->cc\n";
}
if( count($this->abcc) > 0 ) {
$this->bcc= implode( ", ", $this->abcc );
$this->headers .= "BCC: $this->bcc\n";
}
if( $this->organization != "" )
$this->headers .= "Organization: $this->organization\n";
if( $this->priority != "" )
$this->headers .= "X-Priority: $this->priority\n";
}
/*
* _build_attachement()
* internal use only - check and encode attach file(s)
*/function _build_attachement()
{
$this->boundary= "------------" . md5( uniqid("myboundary") ); // TODO : variable bound
$this->headers .= "MIME-Version: 1.0\nContent-Type: multipart/mixed;\n boundary=\"$this->boundary\"\n\n";
$this->fullBody = "This is a multi-part message in MIME format.\n--$this->boundary\nContent-Type: text/plain; charset=us-ascii\nContent-Transfer-Encoding: 7bit\n\n" . $this->body ."\n";
$sep= chr(13) . chr(10);
$ata= array();
$k=0;
// for each attached file, do...
for( $i=0; $i < sizeof( $this->aattach); $i++ ) {
$filename = $this->aattach[$i];
$basename = basename($filename);
$ctype = $this->actype[$i]; // content-type
$disposition = $this->adispo[$i];
if( ! file_exists( $filename) ) {
echo "Class Mail, method attach : file $filename can't be found"; exit;
}
$subhdr= "--$this->boundary\nContent-type: $ctype;\n name=\"$basename\"\nContent-Transfer-Encoding: base64\nContent-Disposition: $disposition;\n filename=\"$basename\"\n";
$ata[$k++] = $subhdr;
// non encoded line length
$linesz= filesize( $filename)+1;
$fp= fopen( $filename, 'r' );
$data= base64_encode(fread( $fp, $linesz));
fclose($fp);
$ata[$k++] = chunk_split( $data );
/*
// OLD version - used in php < 3.0.6 - replaced by chunk_split()
$deb=0; $len=76; $data_len= strlen($data);
do {
$ata[$k++]= substr($data,$deb,$len);
$deb += $len;
} while($deb < $data_len );
*/ }
$this->attachment= implode($sep, $ata);
}
} // class Mail
$subject=StripSlashes($subject);
$msg=StripSlashes($msg);
$msg="Message depuis votre site web:
$msg";
$m= new Mail; // create the mail
$m->From( "$email" );
$m->To( "$dest");
$m->Subject( "$subject" );
$m->soiree( "$soiree" );
$m->date( "$date");
$m->lieu( "$lieu" );
$m->genre( "$genre" );
$m->style( "$style" );
$m->debut( "$debut" );
$m->fin( "$fin" );
$m->tarifS( "$tarifs" );
$m->tarifA( "$tarifa" );
$m->infoline( "$infoline" );
$m->description( "$description" );
$m->Body( $msg); // set the body
if ($email1!="") {
$m->Cc( "$email1");
}
$m->Priority($priority) ;
if ("$NomFichier_name"!="") {
copy("$NomFichier","../upload/$NomFichier_name");
$m->Attach( "../upload/$NomFichier_name", "application/octet-stream" );
}
if ("$NomFichier2_name"!="") {
copy("$NomFichier2","../upload/$NomFichier2_name");
$m->Attach( "../upload/$NomFichier2_name", "application/octet-stream" );
}
$m->Send();
if ("$NomFichier_name"!="") {
Unlink("../upload/$NomFichier_name"); }
if ("$NomFichier2_name"!="") {
Unlink("../upload/$NomFichier2_name"); }
echo "$reponse";
?>
</body>

vendredi 26 mars 2010 à 11:26:59 | Re : Aide formulaire php

TychoBrahe

Réponse acceptée !
Salut,

Ça ne te dirais pas de :
1. Utiliser les balises [code=php][/code]
2. Indenter ton code
3. Diviser le code en plusieurs entités logiques réparties dans plusieurs fichiers.

Parce que là, un peu moins de 300 lignes de code tout en bordel, c'est juste illisible.
vendredi 26 mars 2010 à 11:35:08 | Re : Aide formulaire php

syl1493

Merci pour la réponse.
Le problème c'est que je suis un très grand débutant en php. J'ai donc utilisé un tutoriel trouvé sur le site et essayé de l'adapter, je ne suis pas capable d'en modifier la structure...
As-tu un code plus simple pour envoyer un formulaire avec pièces jointes, je suis preneur.
vendredi 26 mars 2010 à 11:46:51 | Re : Aide formulaire php

TychoBrahe

Quand je dis utiliser les balises [code=php][/code] ce n'est pas dans ton code mais juste sur ce forum afin de faciliter la lecture. L'indentation est juste la présentation, c'est à dire tout ce qui va être retour à la ligne, tabulations, espacements etc. Pour tout ceci il n'y a nul besoin d'être expert en php, le premier venu saurai s'en charger.
vendredi 26 mars 2010 à 12:27:20 | Re : Aide formulaire php

syl1493

Est-ce mieux ainsi :
Code PHP :
<?
$dest="sb@netentreprise.net";
$reponse=StripSlashes("Merci de votre confiance");
*/class Mail
{var $sendto= array();
var $from, $msubject;
var $acc= array();
var $abcc= array();
var $aattach= array();
var $priorities= array( '1 (Highest)', '2 (High)', '3 (Normal)', '4 (Low)', '5 (Lowest)' );
// Mail contructor
function Mail()
{$this->autoCheck( true );}
*/function autoCheck( $bool )
{if( $bool )
$this->checkAddress = true;
else
$this->checkAddress = false;}
*/function Subject( $subject )
{$this->msubject = strtr( $subject, "\r\n" , "  " );}
*/function From( $from )
{if( ! is_string($from) ) {
echo "Class Mail: error, From is not a string";
exit;}
$this->from= $from;}
*/function To( $to )
{// TODO : test validité sur to
if( is_array( $to ) )
$this->sendto= $to;
else
$this->sendto[] = $to;
if( $this->checkAddress == true )
$this->CheckAdresses( $this->sendto );}
*/function Cc( $cc )
{if( is_array($cc) )
$this->acc= $cc;
else
$this->acc[]= $cc;
if( $this->checkAddress == true )
$this->CheckAdresses( $this->acc );}
*/function Bcc( $bcc )
{if( is_array($bcc) ) {
$this->abcc = $bcc;
} else {
$this->abcc[]= $bcc;}
if( $this->checkAddress == true )
$this->CheckAdresses( $this->abcc );}
*/function Body( $body )
{$this->body= $body;}
*/function Send()
{// build the headers
$this->_build_headers();
// include attached files
if( sizeof( $this->aattach > 0 ) ) {
$this->_build_attachement();
$body = $this->fullBody . $this->attachment;}
// envoie du mail aux destinataires principal
for( $i=0; $i< sizeof($this->sendto); $i++ ) {
$res = mail($this->sendto[$i], $this->msubject,$body, $this->headers);
// TODO : trmt res}}
*/function Organization( $org )
{if( trim( $org != "" )  )
$this->organization= $org;}
*/function Priority( $priority )
{if( ! intval( $priority ) )
return false;
if( ! isset( $this->priorities[$priority-1]) )
return false;
$this->priority= $this->priorities[$priority-1];
return true;}
*/function Attach( $filename, $filetype='application/x-unknown-content-type', $disposition = "inline" )
{// TODO : si filetype="", alors chercher dans un tablo de MT connus / extension du fichier
$this->aattach[] = $filename;
$this->actype[] = $filetype;
$this->adispo[] = $disposition;}
*/function Get()
{$this->_build_headers();
if( sizeof( $this->aattach > 0 ) ) {
$this->_build_attachement();
$this->body= $this->body . $this->attachment;}
$mail = $this->headers;
$mail .= "\n$this->body";
return $mail;}
*/function ValidEmail($address)
{if( ereg( ".*<(.+)>", $address, $regs ) ) {
$address = $regs[1];}
if(ereg( "^[^@  ]+@([a-zA-Z0-9\-]+\.)+([a-zA-Z0-9\-]{2}|net|com|gov|mil|org|edu|int)\$",$address) )
return true;
else
return false;}
*/function CheckAdresses( $aad )
{for($i=0;$i< sizeof( $aad); $i++ ) {
if( ! $this->ValidEmail( $aad[$i]) ) {
echo "Class Mail, method Mail : invalid address $aad[$i]";
exit;}}}
/********************** PRIVATE METHODS BELOW **********************************/
*/function _build_headers()
{// creation du header mail
$this->headers= "From: $this->from\n";
$this->to= implode( ", ", $this->sendto );
if( count($this->acc) > 0 ) {
$this->cc= implode( ", ", $this->acc );
$this->headers .= "CC: $this->cc\n";}
if( count($this->abcc) > 0 ) {
$this->bcc= implode( ", ", $this->abcc );
$this->headers .= "BCC: $this->bcc\n";}
if( $this->organization != ""  )
$this->headers .= "Organization: $this->organization\n";
if( $this->priority != "" )
$this->headers .= "X-Priority: $this->priority\n";}
*/function _build_attachement()
{$this->boundary= "------------" . md5( uniqid("myboundary") ); // TODO : variable bound
$this->headers .= "MIME-Version: 1.0\nContent-Type: multipart/mixed;\n boundary=\"$this->boundary\"\n\n";
$this->fullBody = "This is a multi-part message in MIME format.\n--$this->boundary\nContent-Type: text/plain; charset=us-ascii\nContent-Transfer-Encoding: 7bit\n\n" . $this->body ."\n";
$sep= chr(13) . chr(10);
$ata= array();
$k=0;
// for each attached file, do...
for( $i=0; $i < sizeof( $this->aattach); $i++ ) {
$filename = $this->aattach[$i];
$basename = basename($filename);
$ctype = $this->actype[$i];        // content-type
$disposition = $this->adispo[$i];
if( ! file_exists( $filename) ) {
echo "Class Mail, method attach : file $filename can't be found"; exit;}
$subhdr= "--$this->boundary\nContent-type: $ctype;\n name=\"$basename\"\nContent-Transfer-Encoding: base64\nContent-Disposition: $disposition;\n  filename=\"$basename\"\n";
$ata[$k++] = $subhdr;
// non encoded line length
$linesz= filesize( $filename)+1;
$fp= fopen( $filename, 'r' );
$data= base64_encode(fread( $fp, $linesz));
fclose($fp);
$ata[$k++] = chunk_split( $data );
/*
// OLD version - used in php < 3.0.6 - replaced by chunk_split()
$deb=0; $len=76; $data_len= strlen($data);
do {
$ata[$k++]= substr($data,$deb,$len);
$deb += $len;
} while($deb < $data_len );
*/        }
$this->attachment= implode($sep, $ata);}
} // class Mail
$subject=StripSlashes($subject);
$msg=StripSlashes($msg);
$msg="Message depuis votre site web:

$msg";

$m= new Mail; // create the mail
$m->From( "$email" );
$m->To( "$dest");     
$m->Subject( "$subject" );
$m->soiree( "$soiree" );
$m->date( "$date");     
$m->lieu( "$lieu" );
$m->genre( "$genre" );
$m->style( "$style" );
$m->debut( "$debut" );
$m->fin( "$fin" );
$m->tarifS( "$tarifs" );
$m->tarifA( "$tarifa" );
$m->infoline( "$infoline" );
$m->description( "$description" );
$m->Body( $msg);        // set the body
if ($email1!="") {
$m->Cc( "$email1");}
$m->Priority($priority) ;   
if ("$NomFichier_name"!="") {
copy("$NomFichier","../upload/$NomFichier_name");
$m->Attach( "../upload/$NomFichier_name", "application/octet-stream" );}
if ("$NomFichier2_name"!="") {
copy("$NomFichier2","../upload/$NomFichier2_name");
$m->Attach( "../upload/$NomFichier2_name", "application/octet-stream" );}
$m->Send(); 
if ("$NomFichier_name"!="") {
Unlink("../upload/$NomFichier_name");   }
if ("$NomFichier2_name"!="") {
Unlink("../upload/$NomFichier2_name");   }
echo "$reponse";
?>


Merci de ton indulgence pour mon ignorance
vendredi 26 mars 2010 à 12:43:09 | Re : Aide formulaire php

TychoBrahe

Bien mieux oui :)

M'enfin il manque encore l'indentation, ne serai-ce que pour les blocs. Au passage tu as fait quelques erreurs lors du retrait de certains commentaires, on trouve plein de */ restant.

Exemple:

Au lieux d'écrire ceci :
Code PHP :
<?php
if ($toto) {
echo 'qwerty';
if ($titi) {
echo 'asdf';
}
}
?>


Il est mieux d'écrire cela :
Code PHP :
<?php
if ($toto) {
   echo 'qwerty';
   if ($titi) {
     echo 'asdf';
   }
 }
?>


Ça permet de mieux visualiser le code.
vendredi 26 mars 2010 à 14:30:12 | Re : Aide formulaire php

syl1493

Merci de m'aider à mieux m'exprimer sur le forum.
Comme indiqué précédemment, je suis nul en code...
As-tu une piste pour m'aider dans mon problème de formulaire ?
vendredi 26 mars 2010 à 14:40:21 | Re : Aide formulaire php

syl1493

Encore une tentative :
Code PHP :
<?
$dest="sb@netentreprise.net";
$reponse=StripSlashes("Merci de votre confiance");
class Mail
{
        var $sendto= array();
        var $from, $msubject;
        var $acc= array();
        var $abcc= array();
        var $aattach= array();
        var $priorities= array( '1 (Highest)', '2 (High)', '3 (Normal)', '4 (Low)', '5 (Lowest)' );
function Mail()
{
        $this->autoCheck( true );
}
function autoCheck( $bool )
{
        if( $bool )
                $this->checkAddress = true;
        else
                $this->checkAddress = false;
}
function Subject( $subject )
{
        $this->msubject = strtr( $subject, "\r\n" , "  " );
}
function From( $from )
{
        if( ! is_string($from) ) {
                echo "Class Mail: error, From is not a string";
                exit;
        }
        $this->from= $from;
}
function To( $to )
{
               if( is_array( $to ) )
                $this->sendto= $to;
        else
                $this->sendto[] = $to;
        if( $this->checkAddress == true )
                $this->CheckAdresses( $this->sendto );
}
function Cc( $cc )
{
        if( is_array($cc) )
                $this->acc= $cc;
        else
                $this->acc[]= $cc;
        if( $this->checkAddress == true )
                $this->CheckAdresses( $this->acc );
}
function Bcc( $bcc )
{
        if( is_array($bcc) ) {
                $this->abcc = $bcc;
        } else {
                $this->abcc[]= $bcc;
        }
        if( $this->checkAddress == true )
                $this->CheckAdresses( $this->abcc );
}
function Body( $body )
{
        $this->body= $body;
}
function Send()
{
                $this->_build_headers();
               if( sizeof( $this->aattach > 0 ) ) {
                $this->_build_attachement();
                $body = $this->fullBody . $this->attachment;
        }
                for( $i=0; $i< sizeof($this->sendto); $i++ ) {
                $res = mail($this->sendto[$i], $this->msubject,$body, $this->headers);
                        }
}
function Organization( $org )
{
        if( trim( $org != "" )  )
                $this->organization= $org;
}
function Priority( $priority )
{
        if( ! intval( $priority ) )
                return false;
        if( ! isset( $this->priorities[$priority-1]) )
                return false;
        $this->priority= $this->priorities[$priority-1];
        return true;
}
function Attach( $filename, $filetype='application/x-unknown-content-type', $disposition = "inline" )
{
        $this->aattach[] = $filename;
        $this->actype[] = $filetype;
        $this->adispo[] = $disposition;
}
function Get()
{
        $this->_build_headers();
        if( sizeof( $this->aattach > 0 ) ) {
                $this->_build_attachement();
                $this->body= $this->body . $this->attachment;
        }
        $mail = $this->headers;
        $mail .= "\n$this->body";
        return $mail;
}
function ValidEmail($address)
{
        if( ereg( ".*<(.+)>", $address, $regs ) ) {
                $address = $regs[1];
        }
         if(ereg( "^[^@  ]+@([a-zA-Z0-9\-]+\.)+([a-zA-Z0-9\-]{2}|net|com|gov|mil|org|edu|int)\$",$address) )
                 return true;
         else
                 return false;
}
function CheckAdresses( $aad )
{
        for($i=0;$i< sizeof( $aad); $i++ ) {
                if( ! $this->ValidEmail( $aad[$i]) ) {
                        echo "Class Mail, method Mail : invalid address $aad[$i]";
                        exit;
                }
        }
}
/********************** PRIVATE METHODS BELOW **********************************/
function _build_headers()
{
        $this->headers= "From: $this->from\n";
        $this->to= implode( ", ", $this->sendto );
        if( count($this->acc) > 0 ) {
                $this->cc= implode( ", ", $this->acc );
                $this->headers .= "CC: $this->cc\n";
        }
        if( count($this->abcc) > 0 ) {
                $this->bcc= implode( ", ", $this->abcc );
                $this->headers .= "BCC: $this->bcc\n";
        }
        if( $this->organization != ""  )
                $this->headers .= "Organization: $this->organization\n";
        if( $this->priority != "" )
                $this->headers .= "X-Priority: $this->priority\n";
}
function _build_attachement()
{
        $this->boundary= "------------" . md5( uniqid("myboundary") ); // TODO : variable bound
        $this->headers .= "MIME-Version: 1.0\nContent-Type: multipart/mixed;\n boundary=\"$this->boundary\"\n\n";
        $this->fullBody = "This is a multi-part message in MIME format.\n--$this->boundary\nContent-Type: text/plain; charset=us-ascii\nContent-Transfer-Encoding: 7bit\n\n" . $this->body ."\n";
        $sep= chr(13) . chr(10);
        $ata= array();
        $k=0;
                for( $i=0; $i < sizeof( $this->aattach); $i++ ) {
                $filename = $this->aattach[$i];
                $basename = basename($filename);
                $ctype = $this->actype[$i];        // content-type
                $disposition = $this->adispo[$i];
                if( ! file_exists( $filename) ) {
                        echo "Class Mail, method attach : file $filename can't be found"; exit;
                }
                $subhdr= "--$this->boundary\nContent-type: $ctype;\n name=\"$basename\"\nContent-Transfer-Encoding: base64\nContent-Disposition: $disposition;\n  filename=\"$basename\"\n";
                $ata[$k++] = $subhdr;
                $linesz= filesize( $filename)+1;
                $fp= fopen( $filename, 'r' );
                $data= base64_encode(fread( $fp, $linesz));
                fclose($fp);
                $ata[$k++] = chunk_split( $data );
                $deb=0; $len=76; $data_len= strlen($data);
                do {
                        $ata[$k++]= substr($data,$deb,$len);
                        $deb += $len;
                } while($deb < $data_len );
        }
        $this->attachment= implode($sep, $ata);
   }
}
$subject=StripSlashes($subject);
$msg=StripSlashes($msg);
$msg="Message depuis votre site web:

$msg";

$m= new Mail;
        $m->From( "$email" );
        $m->To( "$dest");     
        $m->Subject( "$subject" );
		$m->soiree( "$soiree" );
        $m->date( "$date");     
        $m->lieu( "$lieu" );
		$m->genre( "$genre" );
		$m->style( "$style" );
		$m->debut( "$debut" );
		$m->fin( "$fin" );
		$m->tarifS( "$tarifs" );
		$m->tarifA( "$tarifa" );
		$m->infoline( "$infoline" );
		$m->description( "$description" );
        $m->Body( $msg);
if ($email1!="") {
        $m->Cc( "$email1");
	}
        $m->Priority($priority) ;   
if ("$NomFichier_name"!="") {
	copy("$NomFichier","../upload/$NomFichier_name");
	$m->Attach( "../upload/$NomFichier_name", "application/octet-stream" );
	}
if ("$NomFichier2_name"!="") {
	copy("$NomFichier2","../upload/$NomFichier2_name");
	$m->Attach( "../upload/$NomFichier2_name", "application/octet-stream" );
	}
        $m->Send(); 
if ("$NomFichier_name"!="") {
Unlink("../upload/$NomFichier_name");   }
if ("$NomFichier2_name"!="") {
Unlink("../upload/$NomFichier2_name");   }
echo "$reponse";
?>


Merci d'avance
vendredi 26 mars 2010 à 19:13:17 | Re : Aide formulaire php

TychoBrahe

Ce n'est pas parfait mais au moins comme ça c'est lisible

Bon pour ton soucis :
Code PHP :
$subject=StripSlashes($subject);
$msg=StripSlashes($msg);

Ici tu utilises des variables qui ne sont pas initialisées. Si ce sont des informations provenant d'un formulaire, les informations que tu cherches doivent se trouver dans $_GET ou $_POST. Il en est de même pour toutes les variables du genre $soiree et autre.

Sinon juste deux remarques: les fonctions unlink() et stripslashes() s'écrivent avec des minuscules et non des majuscules. Pour les variables, faire "$nom" est complètement inutile, $nom est suffisant. Si tu veux forcer le type en chaîne de caractère, ce qui est ici inutile, tu peux également utiliser le cast (string)$nom ou bien la fonction de conversion correspondante strval($nom).


Cette discussion est classée dans : mail, function, to, headers, if


Répondre à ce message

Sujets en rapport avec ce message

Formulaire PHP, reponse dans une autre page... [ par sebarca ] Bonjour, à tous, je pense que c'est mon premier post sur le forum malgré de nombreuses années de recherche sur celui-ci. Aujourd'hui je post un messag Comment passer les variables en vbscript dans une page PHP ? [ par hackoo ] salut [^^clinoeil1] j'ai un formulaire en html qui interagit avec une page en php pour envoyer un e-mail avec une pièce-jointe.Alors ce dernier marche formulaie email [ par LiTtLeBuBu ] Bonjour, VOila jai fais un formail en php sur la base d'un code source qui est "formailplus" trouver sur internet et j'arrive a envoyer des emails Erreur dans formulaire : Parse error: parse error in /data/members/free/multimania/fr/v/a/l/vali103/htdocs/formulaire/formmail.php on line 357 [ par vali103 ] Bonjour,J'utilise Formmail+, j'ai mis les 2 fichier dans un dossier de mon serveur (Lycos Multimania avec PHP activé, fonction (mail) activé)J'ai auss Formulaire upload de plusieurs images [ par pak80 ] Formulaire upload d'imagesalut à tous j'ai trouvé ce code mais j'aimerais pouvoir telecharger plusieurs images via le formulaire quelqu'un peu m'aider Envoi d' un mail avec des $variable dans le message [ par blibers ] Slt a tous ;)voila mon pb :je ne trouve pas de solutions pour pouvoir envoyer un message mail avec des variables dans le corp du message !je vous mets Hotmail ne reçoit pas les e-mails. [ par Straw ] Bonjour à tous,Après plusieurs jours de recherches sur toute la toile, tous les forums je n'arrive pas à régler ce problème :J'ai une fonction d'envoi proble me d'envoi de mail avec PHP5 [ par briant86 ] Bonjour, jai un simple code pour envoyer les mails, mon problème c'est que sur PHP4 version sur (easyPHP 1.8) il marche tres bien, mais sur Wamp serve Mail en php avec pear qui arrive en spam [ par Dje33 ] Bonjour à tous, Après plusieurs recherche j'ai trouvé un forum qui parlait de Pear pour envoyer les mails depuis un site sans que ceci arrive en spa


Nos sponsors


Sondage...

Comparez les prix

CalendriCode

Mai 2012
LMMJVSD
 123456
78910111213
14151617181920
21222324252627
28293031   

Consulter la suite du CalendriCode

A découvrir



 
Développement réalisé par Nicolas SOREL (Nix) avec l'aide de : Cyril DURAND et Emmanuel (EBArtSoft), Merci à Vincent pour ses précieux conseils.
CodeS-SourceS.com© Toute reproduction même partielle est interdite sauf accord écrit du Webmaster
CodeS-SourceS.com© est une marque déposée tous droits réservés

Google Coop CodeS-SourceS Google Coop CodeS-SourceS
Temps d'éxécution de la page : 0,515 sec (4)

Nous contacter | Annoncer sur CodeS-SourceS | Mentions légales