What would be the most simple way to convert an Array Integer to separate numbers?
Example:
array(2,4,6)
should result in:
num1=2,num2=4,num3=6
What would be the most simple way to convert an Array Integer to separate numbers?
Example:
array(2,4,6)
should result in:
num1=2,num2=4,num3=6
You have tried "list"?
list($num1, $num2, $num3) = $myArray;
See http://php.net/list for more details.