Not sure you can have variables starting with numbers. It works with ASP but PHP seems worth learning.
Used to name for elements 001, 002, etc..
now I use f001, f002, etc.
to read the variable portion you can read
substr($f001,1,3);
this will give you the numerical portion 001.
HTH.
Sam Fullman