what does the assignment in this loop do? I don't get the array notation in it :S
foreach($fieldvalues as $fieldvalue){
$insertvalues[] = $fieldvalue;
}
|
|
|
Additional:For those who are unsure how the loop works.
every time the loop... loops, the value |
|||||||
|
|
It inserts a new item at the end of the array. Other languages tend to have an append or push function for this. |
|||||
|
|
It adds the value of |
|||
|
|