I use an array for the first time in a while loop without declaring it(as php does not need it)
$variable_array[] = $fetch_array['column'];
As the while loop is repeating it increases the number of the array.
Am I doing this right?
Should I have before the loop some code like:
$variable_array = array();
Dont know abit confused and lost.
Thanks, Regards X