Thanks,
Here is my php code :
while ($res3 = $req2->fetch()){
$rArray[] = $res3->post_id;
}
$jSticky=serialize($rArray);
print_r($jSticky);
but it’s not work as it’s return this :
a:3:{i:0;s:2:”55″;i:1;s:2:”84″;i:2;s:3:”127″;}
but wordpress want this format instead :
a:3:{i:0;i:55;i:1;i:84;i:2;i:127}
Have you got an idea ? how to return the good format ?
Thanks you so much