kk i have exploded a string into a var called $items
$items=explode(", ",$string)
and what i wuld like to do is have a while to go through that array like you would do with a mysql array
while($row = mysql_fetch_array($result, MYSQL_ASSOC)){
}
so i would like the while to keep going until i have reached the last $items[''], but how would i code this without involving any mysql?
plz dont move this to the database bit because its nothing to do with databases, i would juts like it to act like a while from an array from a database.
btw thx in advance😃