php和mysql只有shoutbox

时间:2015-02-20 02:50:51

标签: php mysql sql

我正在尝试使用php和mysql构建shoutbox。

我正在使用以下代码:

<?php
    $sqldisplay =$Db1->query("select * from shoutbox ORDER BY date_time DESC");
?>

<h4>shout box input here</h4>

<form method="post" action="">
    Message: <input type="text" id="message" name="message" class="message" />
    <input type="submit" id="submit" value="Submit" name="shout" />
</form>
<?php

    if(isset($_REQUEST['shout']))
    {

        $message    = htmlspecialchars(mysql_real_escape_string($_POST['message']));
        $sqlact =$Db1->query("Insert into shoutbox Values(NULL,NOW(),
'$username','$message')");
        echo "save db";
    }

?>

<table>
    <thead><tr><td colspan="3">
        <center>shout box output here</center></td></tr><tr><th>date</center></th>
        <th><center>username</center></th>
        <th><center>message</center></th></tr></thead>

    <?php 

        while($row = mysql_fetch_array($sqldisplay))  
        {
            echo "<tr> ";
            echo "<td>" .$row[date_time] . "</td>";
            echo "<td>" .$row[name] . "</td>";
            echo "<td>" .$row[message] . "</td>";
        }

        echo "</tr> ";
    ?>

</table>

我知道网上有很多jquery shoutbox,但我不知道jquery。所以在这里发表我的问题。

问题:
1:我想在用户按提交后立即显示输出。他的喊声也应该出现在桌面上,不要刷新页面 2:我希望输出以滚动的方式显示,就像正常的shoutbox看起来一样。例如 http://skrypty.klocus.pl/2012/01/php-ajax-shoutbox.html

有人慷慨地帮助我建立这个小剧本。

0 个答案:

没有答案