本文介绍了我的PHP功能总是循环.的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

这是我的功能.

this is my function..

public function _GetResults($query)
        {
            $array = array();
            $result = mysql_query($query);
            if(!$result)
            {
                die('Invalid query: ' .mysql_error());
            }
            $array=mysql_fetch_assoc($result);
            return $array;
        }



这是我获取结果的代码,结果将显示但不会停止循环



this is my code to get the results, the results will display but it will not stop looping

<?php



            echo "<table>";
            echo "<tr><th>First Name</th><th>Last Name</th></tr>";

            $Connection->_CreateConnections();
            $result = $Connection->_GetResults("select fname,lname from tblNames");

            while($result)
            {
                echo "<tr>";
                echo "<td>".$result["fname"]."</td>";
                echo "<td>".$result["lname"]."</td>";
                echo "</tr>";
            }

            echo "</table>";

            $Connection->_CloseConnections();
        ?>



输出像这样

FIRSTNAME LASTNAME
约翰·道伊
约翰·道伊
john doe



the output goes like this

FIRSTNAME LASTNAME
john doe
john doe
john doe

推荐答案




这篇关于我的PHP功能总是循环.的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

11-03 00:28