[Database store in array] Help make the order change, from the front to be the end

Hi guys,

  1. i have a database field stored in array, the default is like this

a:3:{i:0;a:5:{i:3;s:7:“4683203”;i:6;s:7:“4683204”;i:9;s:7:“4768795”;i:10;s:7:“4683206”;i:11;s:7:“4925120”;}i:1;a:4:{i:0;s:7:“4683208”;i:2;s:7:“4683212”;i:3;s:7:“4683211”;i:4;s:7:“4925121”;}i:2;a:0:{}}

  1. now i want to add a value in that field, by run this link : http://www.domain.com/filename.php?cmd=addmod&modid=2 (please see the complete filename.php file content here : http://pastebin.com/BabtP21Y , the part that i think responsible for this i think about line 674-709, that i highlighted there)

the field become like this, there is new code in the front that highlighted below

a:3:{i:0;a:5:{i:3;s:7:“4683203”;i:6;s:7:“4683204”;i:9;s:7:“4768795”;i:10;s:7:“4683206”;i:11;s:7:“4925120”;}i:1;a:5:{i:0;i:4924131;i:1;s:7:“4683208”;i:2;s:7:“4683212”;i:3;s:7:“4683211”;i:4;s:7:“4925121”;}i:2;a:0:{}}

  1. the only problem, i need it to put it in the back and the position are reserved, so like this that highlighted below

a:3:{i:0;a:5:{i:3;s:7:“4683203”;i:6;s:7:“4683204”;i:9;s:7:“4768795”;i:10;s:7:“4683206”;i:11;s:7:“4925120”;}i:1;a:5:{i:0;s:7:“4683208”;i:2;s:7:“4683212”;i:3;s:7:“4683211”;i:4;s:7:“4925121”;i:1;i:4924131;}i:2;a:0:{}}

please help to make the array position stored like that, maybe by editing the php file

GBU for that helping

Okay your pastebin link isnt working. So flying blind a bit on what the code is actually doing…

[FPHP=unserialize]Unserializing[/FPHP] the array results in a bit more readable format:

Array
(
    [0] => Array
        (
            [3] => 4683203
            [6] => 4683204
            [9] => 4768795
            [10] => 4683206
            [11] => 4925120
        )

    [1] => Array
        (
            [0] => 4924131
            [1] => 4683208
            [2] => 4683212
            [3] => 4683211
            [4] => 4925121
        )

    [2] => Array
        (
        )

)

So [FPHP]array_push[/FPHP] the value returned by [FPHP]array_shift[/FPHP]'ing the array element at key 1.