Hi,
my program reads an html based email and gets some varibles. The variables are in a html table.
$tmp=explode("\n",$mailbody);
foreach ($tmp as $v)
{
$tmp2=explode(': ', ltrim(strip_tags(chop($v))));
$xxx=$tmp2[0]; $yyy=$tmp2[1];
echo $xxx,":",$yyy,"<br>";
}
echo line shows for example :
Articlename=20 //line break
battery12
everytime after $xxx i see " =20" symbol.
what ist this? How do i remove it?
Any idea?