Jump to content

Help - new to php


Teldosh

Recommended Posts

<form action="test.php" method="POST">
<br>
<?php
    
    for ($i=1; $i<=6; $i++){
        echo $i.'<input type="text" name="option_"> '.'<br>';
        
  }
?>
 <br>

<input type="submit" name="submit" value="submit">

<br><input type="text" size ="2" name="add_field"> <input type="submit" name="add" value="add">
    Add extra boxes
    <?php
              $select = array();
                 if ($_POST['submit']){
                    for ($x = 1; $x<= 6; $x++){
                 if ($_POST["option_$x"]){
               array_push($select, $_POST["option_$x"]);
             }
        }
    if (count($select)){
    echo '<br>'.'<br>'.'<br>'."The Decider has choosen: " .'<p>'.$select[rand(0,count($select) - 1)].'</p>';
          }
    }
    ?>
</form>

 

Hi, I have 6 textfeilds and a submit button. When someone enters several values into the textfield and selects submit it will display a random result from one of the 6 textfields. I have also another textfeild and submit button. This is to add more textfields.
At the moment it is only displaying the result from the 6th textfield as I do not know how to correctly store the results into an array and also im unsure on how to add extra textfields. can anyone help please?

Link to comment
Share on other sites

This thread is more than a year old. Please don't revive it unless you have something important to add.

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Restore formatting

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.