Huhu guys,

this code won't work, I get the nameslist correctly and completly, but they do not recieve my private message... :/

foreach ($names as $key=>$name) {
if ($name == "") unset ($names[$key]);
if (stristr($name, "@")) $names[$key] = str_replace("@", "", $name);
echo $names[$key];
echo "\n";
$irc->message(SMARTIRC_TYPE_QUERY,$names[$key],'You joined my nice channel!!! YEAH!');
}