my php dynamically created a value in a variable
the format which is something like
$var = "name|address|phone"
how can i seperate them?
i only know ASP has a function to create an array for this value
newvar = aspfunction(var) will become
newvar(1) = name
newvar(2) = address
newvar(3) = phone
is PHP able to do that?