Can anyone have a look at the php code I wrote. I want to extract the three information into an array, but it doesn't work for me.
$string = "<Name>Joh Doe <Email>joh.doe@gmail.com <App ID> 130105"
$var = preg_split("/^<.*<$/" , $string);
Thanks,