|
Posted by Rik on 07/28/06 23:42
Gary Hasler wrote:
> usenet@isotopeREEMOOVEmedia.com wrote:
>
>> How would one create an array from the values in string ?
>> $mystring = "67,11,68,11,69,11,70,11"; // comes from a varchar
>> MySQL field
>>
>> I wish that
>> $myarray = array($mystring);
>> would work, but it doesn't seem to....
> I think you want
> $myarray = explode($mystring, ",");
Which would offcourse work, but seriously reconsider your database if that's
how you store your data. It shouldn't be necessary to split data in a field.
Grtz,
--
Rik Wasmus
Navigation:
[Reply to this message]
|