dqol6556 2015-04-12 08:34
浏览 35
已采纳

array_push在页面刷新后不添加第二项

I understand that array_push is not adding a 2nd item because when the page refreshes after adding another item the original one goes away and get's replaced by the most recent entry from the text box.

I am trying to achieve this tactic of trying to either...

a. Have a session remember the next item being added EVEN through a page refresh.

or

b. Just not refresh the page at all.

See demo here: http://query.notesquare.me/home.html/

CODE

<form method="post">
    <input type="text" id="input-create-playlist" placeholder="Playlist Name" name="create_playlist" />
    <input type="submit" id="button-create-playlist" value="Create Playlist" />
</form>

<?php
    session_start();

    $create_playlist = $_POST['create_playlist'];

    $playlists = array("One", "Two", "Three");

    $_SESSION['main'] = $playlists;

    array_push($playlists, $create_playlist);

    for ($i = 0; $i < count($playlists); $i++) {
        echo $playlists[$i] . "<br />";
    }
?>
  • 写回答

1条回答 默认 最新

  • drecy22400 2015-04-12 08:54
    关注

    Try

    <form method="post">
        <input type="text" id="input-create-playlist" placeholder="Playlist Name" name="create_playlist" />
        <input type="submit" id="button-create-playlist" value="Create Playlist" />
    </form>
    
    <?php
        session_start();
    
        $create_playlist = $_POST['create_playlist'];
    
        $_SESSION['user_playlists'][] = $create_playlist;
    
        $playlists = array("One", "Two", "Three");
    
        for ($i = 0; $i < count($_SESSION['user_playlists']); $i++) {
            array_push($playlists, $_SESSION['user_playlists'][$i]);
        }
    
        $_SESSION['main'] = $playlists;      
    
        for ($i = 0; $i < count($playlists); $i++) {
            echo $playlists[$i] . "<br />";
        }
    ?>
    

    Your approach was setting the $_SESSION['main'] = $_POST['create_playlist'] before the desired effects of array_push.

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

报告相同问题?

悬赏问题

  • ¥15 2024-五一综合模拟赛
  • ¥15 下图接收小电路,谁知道原理
  • ¥15 装 pytorch 的时候出了好多问题,遇到这种情况怎么处理?
  • ¥20 IOS游览器某宝手机网页版自动立即购买JavaScript脚本
  • ¥15 手机接入宽带网线,如何释放宽带全部速度
  • ¥30 关于#r语言#的问题:如何对R语言中mfgarch包中构建的garch-midas模型进行样本内长期波动率预测和样本外长期波动率预测
  • ¥15 ETLCloud 处理json多层级问题
  • ¥15 matlab中使用gurobi时报错
  • ¥15 这个主板怎么能扩出一两个sata口
  • ¥15 不是,这到底错哪儿了😭