Results 1 to 3 of 3

Thread: Array of textfield

Threaded View

  1. #1

    Thread Starter
    Fanatic Member
    Join Date
    Jan 2005
    Location
    Cebu
    Posts
    607

    Resolved Array of textfield

    I generated an array of textfield on my table for a quick update of the data on the list. Let's say I have
    Code:
    Id  Name  Address
     1  Jim   
     2  Boy  
     3  Gregg
    And the addresses are textfields, let's just call it <input type='text' name='address[]' size='12'>. Now I can get the array with this
    Code:
    while (list($k, $v) = @each($_POST['address])) {
    But how do you guys normally get the field that has value and update it to reflect what address is for whom?

    And... am I doing good so far? Or is there a better way of doing this? Thanks.
    Last edited by nebulom; Jun 27th, 2007 at 08:46 PM.

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  



Click Here to Expand Forum to Full Width