插入新数据后的Wordpress刷新表

时间:2013-11-18 20:59:13

标签: javascript php mysql wordpress refresh

我真的对这个问题一无所知。我创建了新的插件。结构很简单: div FreeQuotation_wrap2(显示表格),div FreeQuotation_wrap3(插入新数据)。但是在写完新数据并点击提交页面后,用旧数据刷新。

当我点击刷新时,我会看到它会将数据重新发送到数据库的信息。没关系 - 我用它来防止它。现在我看到新记录的新表。我该如何自动制作?

我尝试了3种方法:onSubmit =“”(不起作用)和javascript(window.location =“...”)和会话技巧(我得到错误 - 标题已经由......发送)。< / p>

<?php
global $FreeQuotation_version;
global $wpdb;
echo $table_name;
global $today_date;
$table_name = $wpdb->prefix . 'free_quotation_kic';

?>
<div class="FreeQuotation_wrap">
    <h2><div class="FreeQuotation_header"></div> FreeQuotation <?php echo $FreeQuotation_version; ?></h2><br>

</div>
<div class="FreeQuotation_wrap2">
    <table class="widefat">
        <?php 
        $FreeQuotation_table = $wpdb->get_results(
        "
        SELECT *
        FROM $table_name
        ORDER BY adding_date DESC
        LIMIT 0 , 10
        "
        ); 
        //nagłówek
            echo '<thead><tr><th> ID </th><th> Quotation </th><th> Author </th><th> Display Date </th><th> Delete </th></tr></thead>';
        //treść
        foreach ( $FreeQuotation_table as $ogresults ) 
        {
            echo '<tr><td>'; 
            echo $ogresults->id; 
            echo '</td><td>'; 
            echo $ogresults->quotation; 
            echo '</td><td>'; 
            echo $ogresults->author;
            echo '</td><td>';
            echo $ogresults->display_date;
                echo '</td></tr>'; 
        }
        echo '<tfoot><tr><th> ID </td><th> Quotation </td><th> Author </td><th> Display Date </th><th> Delete </td></tr></tfoot>';
        ?>
    </table>
</div>
<div class= "FreeQuotation_wrap3">
    <form method="post" action="options.php">
        <?php settings_fields('FreeQuotation_settings_filed'); ?>
        <?php $options = get_option('FreeQuotation_options'); ?>
    </form>
<?php

    global $current_user;
    $ufUserID = $current_user->ID;
    $quotation = $_POST["quotation_textarea"];
    $author = $_POST["autor_text"];
    $display_date = $_POST["display_date"];
    $url = $_SERVER['PHP_SELF'];
    $adding_date = $today_date;
    echo $url;
    if ( 'POST' == $_SERVER['REQUEST_METHOD'] && !empty( $_POST['action'] ) && $_POST['action'] == 'updateFeedback' ) {
        $FreeQuotation = $wpdb->insert( 'wp_free_quotation_kic', array( 'quotation' => $quotation, 'author' => $author, 'display_date' => $display_date, 'adding_date' => $adding_date,) );
    }?>

    <a href="<?php echo $url;?>">TUTAJ</a>
    <h3 class="widget-title">Add quotation</h3>
    <form id='reloader' method='post' onSubmit="<?php echo $url;?>">
        <table class="widefat" >
            <thead>
            <tr><th>Quotation</th><th>Author</th><th>Display Date</th></tr>
            </thead>
            <tbody>
            <tr><td>
            <textarea rows="1" cols="100" name="quotation_textarea" required></textarea>
            </td>
            <td>
            <input type="text" name="autor_text" required></input>
            </td>
            <td>
            <input type="text" name="display_date" required></input>
            </td></th>
            </tbody>
            <tfoot>
            <tr><th>
            <input class="button button-primary" type="submit" name="submit" value="submit"/>
            <?php wp_nonce_field( 'updateFeedback' ); ?>
            <input name="action" type="hidden" id="action" value="updateFeedback"/>
            </th></td>
            </tfoot>
        </table>
    </form><br>
</div>
<div class="FreeQuotation_wrap4">
    <h3>Zmiany:</h3>

</div>
<?php 
?>
你能帮帮我吗?这是我的第一个问题雇佣(我相信最后一个......)。通常当我尝试写一个问题时,我会很快找到答案:)现在我花了几个小时来解决这个问题,我没有看到任何解决方案......

1 个答案:

答案 0 :(得分:0)

我找到了简单的解决方案 - 它非常简单,而且很有效。也许它不专业,但我没有任何其他想法......

我改变了页面上的顺序。首先是添加新位置的表单,第二个是带输出的表。这意味着我改变了两个顺序:

<div class= "FreeQuotation_wrap3">
...
</div>

<div class="FreeQuotation_wrap2">
...
</div>

这是我在stackoverflow.com上的第一个答案; - )