Array $ids contains:
Array ( [0] => 25 [1] => 29 [2] => 30 [3] => 34 )
How do I insert each key as a row in column ID?
ID |
25
29
30
34
So far I did this, I don't know if it's possible to stick it in the query though:
$x = 0;
while($x < 6) {
echo "values ('" . $follower . "','" . $ids[$x] . "')";
$x++;
}