Hi,
I am getting 2 type of vars from my db:
$job_id
$po_id
I want to create an array with both of them.
So I have this loop:
$i=0;
while ($db->next_record()) {
$arr[$i] = $job_id
$i++
}
How can I add the $po_id to this array and create a multi-dimensional array?
Thanks,
Assaf