Hey guys I am looking for some help for my user system pips
Okay this is what I have writen
this is simply outputing a dead image that is called "pipone.gif|piptwo.gif|pipthree.gif|pipfour.gi f" so I guess the explode has been used wrong?PHP Code:$one = 'pipone.gif|piptwo.gif|pipthree.gif|pipfour.gif';
explode('|', $one);
$two = array("$one");
reset($two);
while (list(, $three) = each($two)) {
echo "<img src='$three' />";
}
Thanks guys,
Danny






Thanks for your idea anyway


