I am trying to assign in the [0] in [1] in [2] and in the [3] for the variable id ... How do I do?
What I tried to do was this:
$id = $nas[0,1,2,3]
I am trying to assign in the [0] in [1] in [2] and in the [3] for the variable id ... How do I do?
What I tried to do was this:
$id = $nas[0,1,2,3]
for ($i = 0; $i < count($nas); $i++) {
$id = $nas[$i];
}