Jump to content
php.lv forumi

Recommended Posts

Posted

man vajag nosūtīt array saturu kā ēpasta tekstu. kā to izdarīt? mēģināju šitā:

 

while ($i <= $var['sizeof($var)']) {
$mail = $mail.$var['$i'];
$i++;
}


mail("user@mail.com","new mail",$input,);

 

bet nekas nesanāk. un kā noformatēt to tekstu (jo HTML taču pa vidu nav), lai katra array vērtība jaunā rindā?

 

 

 

-skazhy

Posted

Man liekas tev drusku šķībs kods. Ja pareizi saprotu ko gribi panākt, tad vajadzētu būt tā

 

$mail = "";
$var = array("a","b","c");
$i = 0;
$size = sizeof($var);
while ($i < $size) {
$mail .= $var[$i]. "\n";
$i++;
}


mail("user@mail.com","new mail",$mail);

 

Jaunā rindā bez html var dabūt ar \n

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

Loading...
×
×
  • Create New...