Re: [php-list] Parsing $_POST problem

2008-09-05 Thread James Keeline
--- Wade Behr <[EMAIL PROTECTED]> wrote: > I'm having trouble parsing $_POST for use in my PHP form processor. > > Sometimes a number will come out as a integer ($x = 1), sometimes it > comes out as a text string ($x = "1"). > > Could someone please explain (or point me to an explanation of) how

[php-list] Parsing $_POST problem

2008-09-05 Thread Wade Behr
Hi, I'm having trouble parsing $_POST for use in my PHP form processor. Sometimes a number will come out as a integer ($x = 1), sometimes it comes out as a text string ($x = "1"). Could someone please explain (or point me to an explanation of) how information is stored in $_POST by a form? Side