Ninjakreborn Posted June 7, 2006 Author Share Posted June 7, 2006 thanks, but what about that k=>as something what does that mean, I understand the error message part, and I might start using that but the bottom, I don't understand what that for each statement is doing with the letters. Link to comment https://forums.phpfreaks.com/topic/11343-problems-with-mail/page/2/#findComment-42767 Share on other sites More sharing options...
ober Posted June 7, 2006 Share Posted June 7, 2006 The foreach it taking your array and splitting it into key/value pairs. It loops through the array and each time you go through the guts of the foreach, you'll have the key => value pair in the $k and $v variables. I normally use $key and $val instead of $k and $v. Link to comment https://forums.phpfreaks.com/topic/11343-problems-with-mail/page/2/#findComment-42768 Share on other sites More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.