Hi, I want to receive unlimited $_POST variables including an additional number and turn them into arrays like paypal form does.
Example:
<form action="mysite">
<input name="productname" />
<input name="productname1" />
<input name="productname2" />
Etc....
</form>
I will turn that into a php array after receiving it:
products(gta,twilight,flowers,chocolate,ipod)
So that just to explain you, i want to list them as an invoice.
Note: Please don't suggest to use the productname[], i want to use preg match to do that Thanks