Through a form and a single input I need to receive multiple numbers and store those numbers in an array. Example, I type any number in the input and click on the submit button of the form, with PHP I get this value and store it in the array. But if you do the same process again the previous value will be lost. How do I not lose it? I tried putting the input as text and pass all the numbers at once but I do not know how to deal with the space and it is not the focus to use Regex. How can I do this without regex?