i want to get text box data

Collapse
X
 
  • Time
  • Show
Clear All
new posts
  • foekall
    New Member
    • Jan 2007
    • 28

    i want to get text box data

    dear all,

    i would to ask,
    One of my php project, I was using so many text box. This text box can be dynamically add and remove. So I want to get this text box data dynamically.
    plz help me.

    thz all
  • Markus
    Recognized Expert Expert
    • Jun 2007
    • 6092

    #2
    Originally posted by foekall
    dear all,

    i would to ask,
    One of my php project, I was using so many text box. This text box can be dynamically add and remove. So I want to get this text box data dynamically.
    plz help me.

    thz all
    By assigning all the textarea names to the same name, you put them into an array. Yuo can then traverse this array to output the text.

    [php]
    <?php
    if(isset($_POST['submit']))
    {
    foreach($_POST['textarea'] AS $key => $val)
    {
    echo "{$key} = {$val}<br />";
    }
    }
    ?>
    [/php]
    [html]
    <form name="lol" action="" method="post">
    <textarea name="textarea[]"></textarea>
    <textarea name="textarea[]"></textarea>
    <textarea name="textarea[]"></textarea>
    <input type="submit" name="submit" />
    </form>
    [/html]

    Comment

    Working...