Posted by artev on 07/03/07 20:33
solution A
0
1 $myarray=array();
2 .. code that fill $myarray;
------------------------------------
solution B
0
1 unset($myarray);
2 .. code that fill $myarray;
------------------------------------
if myarray going from point 0, when it is at point 1
is make new totally?
I want that in the point 2 the array is how the first time used
(not affect by previous use; all how new )
Navigation:
[Reply to this message]
|