"Disko_kex" <[EMAIL PROTECTED]> wrote in message
news:[EMAIL PROTECTED]
> If I have a normal array like "Array ( [0] => 1 [1] => 3 [2] => 82 )" ,
> and want to store the array in a mysql table and then want to use it.
> How can I do?
>
> // jocke
>

There are at least two ways you can do this.  If you really want to use a
mysql table (not recommended) and your keys are all sequential integers,
just implode the array and save it in a text or long char field.  If you
just need to save the array temporarily between pages, use sessions.

  -- Rob



-- 
PHP Windows Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php

Reply via email to