donglu0494 2013-10-14 02:13
浏览 14
已采纳

如何允许用户在页面上提交同一表单的多个实例并使用php存储数据? [关闭]

I am working on a php project that consists of an html form that allows the user to submit the bits of text, a song name, composer, and artist. Once the user fills in the form and clicks submit, the data should be stored and allow the form to be filled in again until the user pushes another button which shows all of the data that has been submitted. I have so far thought of using arrays, but I am not sure how that would work with multiple form submissions sending to the same array. Any help would be greatly appreciated.

    <html>
      <head>
      </head>

      <body>
        <form method="post">
          Name of song: <input type="text" name="songName"><br>
          Composer: <input type="text" name="composer"><br>
          Artist/Group: <input type="text" name="artist"><br>
          <input type="submit" name="submit">
        </form>
      </body>


      <?php
        if (!empty($_POST['submit'])) {
          //Submit the data into the array or something here
        }
      ?>
    </html>
  • 写回答

1条回答 默认 最新

  • douchigu1723 2013-10-14 02:24
    关注

    Certainly, try this and see what happens:

    <?php
        session_start();
    
        // Initialize an array for answers
        if (!isset($_SESSION['answers']))
            $_SESSION['answers'] = array();
    ?>
    <html>
      <head>
      </head>
    
      <body>
        <form method="post">
          Name of song: <input type="text" name="songName"><br>
          Composer: <input type="text" name="composer"><br>
          Artist/Group: <input type="text" name="artist"><br>
          <input type="submit" name="submit">
        </form>
      </body>
    
    
      <?php
        if (!empty($_POST['submit'])) {
            // Push the posted data into the session array
            $_SESSION['answers'][] = $_POST;
        }
    
        // Display the data now
        foreach($_SESSION['answers'] as $array) {
            echo "Name of song: {$array['songName']}<br>";
            echo "Composer: {$array['compose']}<br>";
            echo "Artist/Group: {$array['artist']}<br><hr>";
        }
      ?>
    </html>
    

    Note: SESSIONS only remain until the user logs off or they time out. For persistance over long periods, you need to use a database such as MySQL to store the answers

    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论

报告相同问题?

悬赏问题

  • ¥15 phython如何实现以下功能?查找同一用户名的消费金额合并—
  • ¥15 孟德尔随机化怎样画共定位分析图
  • ¥18 模拟电路问题解答有偿速度
  • ¥15 CST仿真别人的模型结果仿真结果S参数完全不对
  • ¥15 误删注册表文件致win10无法开启
  • ¥15 请问在阿里云服务器中怎么利用数据库制作网站
  • ¥60 ESP32怎么烧录自启动程序
  • ¥50 html2canvas超出滚动条不显示
  • ¥15 java业务性能问题求解(sql,业务设计相关)
  • ¥15 52810 尾椎c三个a 写蓝牙地址