如何创建动态php页面

时间:2015-03-12 13:39:16

标签: php mysql

所以实际上很难解释我的意思。

所以我在这里有这个清单。它从数据库中提取数据,然后在我的网页上的DIV中显示它。

我希望它只显示前4个列表。然后4秒后。我想让它显示接下来的4个聆听并保持无限旋转。如果有人能指出我能够做到这一点的方向。此外,它需要每4秒动态更新一次。不是在用户点击刷新时。

<?php session_start(); ?>
            <head>
            <link rel="stylesheet" type="text/css" href="tablecss.css">
            <style type="text/css">

                .extra {

                    position: relative;
                    top: 50px;
                }
                body {

                    overflow: hidden;
                }


            </style>
            </head>

            <body>



            <?php

            $con = mysqli_connect('##', '##', '##', '##');
            if(mysqli_connect_errno()) {

              echo 'Failed to Connect to MySQL' . mysqli_connect_errno();
            } 
            $user = $_SESSION['username'];
            $result = mysqli_query($con, "SELECT * FROM corporations");

            echo "<table id='tb'border='1'>
            <tr>
            <th>Name</th>
            <th>Owner</th>
            <th>Last Price</th>
            <th>Volume</th>
            </tr>";



            while($row = mysqli_fetch_array($result)) {
            echo "<tr>";






                echo "<td>" . $row['name'].    "</td>";
                echo "<br>";
                echo "<td>" . $row['owner'] . "</td>";
                echo "<br>";
                echo "<td>" .'$'. $row['shareValue'] . "</td>";
                echo "<br>";
                echo "<td>" . $row['publicShares'] . "</td>";
                echo "<br>";    

            } 
            mysqli_close($con);
            ?>
            </div>

            </body>

1 个答案:

答案 0 :(得分:2)

你可以做的是javascript,并使用ajax。你可以使用setInterval(http://www.w3schools.com/jsref/met_win_setinterval.asp)每四秒加载一次,但对我来说,如果你使用jQuery load more data on scroll则更好。

限制输出使用mysql的限制。

请参阅此文章:http://www.mysqltutorial.org/mysql-limit.aspx