skazhy Posted February 14, 2009 Report Share Posted February 14, 2009 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 Quote Link to comment Share on other sites More sharing options...
4e4en Posted February 14, 2009 Report Share Posted February 14, 2009 Tu vispār esi skatījies kādas kļūdas php izvada? hint: implode Quote Link to comment Share on other sites More sharing options...
Jackal Posted February 15, 2009 Report Share Posted February 15, 2009 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 Quote Link to comment Share on other sites More sharing options...
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.