On Fri, May 11, 2001 at 10:24:02AM -0500, Jacky wrote:
> I got series of string value like this 1,2,3. And the seires are
> dynamic dynamaic, which means it is not always 1,2,3 but could be
> more, but always in this format that is separated by "," . How do I
> pick each of value in the series and assign it into new vairiable,
> like from:
> $test = 1,2,3;
> and assign to be
> $test =1;
> $test1=2;
> $test2 =3;
> Is theer any function that could help me with that? because I need to
> update table using those value but I cannot use series of value to
> update, have to break them down to each variable like that.
Use arrays.
$test = "1,2,3";
$test = explode(",", $test);
// $test[0] == "1";
// $test[1] == "2";
// $test[2] == "3";
--
Jason Stechschulte
[EMAIL PROTECTED]
--
Well, that's more-or-less what I was saying, though obviously addition
is a little more cosmic than the bitwise operators.
-- Larry Wall in <[EMAIL PROTECTED]>
--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]
To contact the list administrators, e-mail: [EMAIL PROTECTED]