PHP passing POST number variables?

Dasaru

New member
Is there a way to pass numerical variables using the POST method in php? I did a search and it turns out that the name attribute has to start with a letter. Essentially, I displayed a phone number MySql table using html and I would like to delete each record by referring to the id number.

I would like it to be: <input name="$id"> (where $id is a number)

The only thing I can think of is to do this: <input name="phone$id"> (which would require me to jump through all sorts of loops to get to work)
 
Back
Top