$text = "admin,demo"; //whit foreach in php
to
href="/admin" title="admin">admin href="/demo" title="demo">demo
$text = 'admin,demo';
$list = explode(',', $text);
foreach ($list as $link) {
echo '.$link.'" title="'.$link.'">'.$link.'
$text = "admin,demo"; //whit foreach in php
href="/admin" title="admin">admin href="/demo" title="demo">demo
$text = 'admin,demo';
$list = explode(',', $text);
foreach ($list as $link) {
echo '.$link.'" title="'.$link.'">'.$link.'
0Comments
Hit me with a comment!