只在加载页面后才打印变量

时间:2012-05-31 11:59:51

标签: php variables loops count while-loop

我正在寻找一种使用php和javascript的简单方法,在页面顶部打印一个php变量,只有在页面加载并运行while循环后才会这样做。

基本上,我有一个遍历我的数据库的while循环,并打印出一个包含用户详细信息的表中的行。 每次找到用户时,它都会向在页面开头声明的变量添加1。

这是我计算搜索后找到的用户数量的基本方法。

然后打印出变量通知我。 唯一的问题是,我只能在循环完成后打印变量,这意味着它必须位于我的页面底部和表格下方。这是愚蠢的,因为我必须滚动到长表的底部才能找到数字。

有没有一种方法,一旦循环完成,并将计数设置为变量,我可以让一个脚本返回并打印表格上方的变量?

非常感谢你们提供的任何建议。

干杯,编辑

编辑:添加代码示例:

<?php
$count = '0';
//Print all users with similar names
while($row = mysql_fetch_assoc($result))
{
//Start the form for each user to enable editing, along with row onhover colour
echo "<form method='post' action='editor.php'>
    <tr class='tablehover'>";
//Depending on searchby, change which column is bold. Helps pick out users
if($searchby == 'username') {
    echo "<td><div class='userhighlight'>".$row['Username']."</div></td>";
}
else {
    echo "<td>".$row['Username']."</td>";
}
if($searchby == 'firstname') {
    echo "<td><div class='userhighlight'>".$row['First Name']."</div></td>";
}
else {
    echo "<td>".$row['First Name']."</td>";
}
if($searchby == 'lastname') {
    echo "<td><div class='userhighlight'>".$row['Last Name']."</div></td>";
}
else {
    echo "<td>".$row['Last Name']."</td>";
}
if($searchby == 'office') {
    echo "<td><div class='userhighlight'>".$row['Office']."</div></td>";
}
else {
    echo "<td>".$row['Office']."</td>";
}
if($searchby == 'lastlogin') {
    echo "<td><div class='userhighlight'>".$row['Last_Login']."</div></td>";
}
else {
    echo "<td>".$row['Last_Login']."</td>";
}

//Set ID of found user
$id = $row['User ID'];
//Create query to load user roles
$roleqry = "SELECT * FROM `site roles` WHERE `User ID`='$id'";
$roleresult = mysql_query($roleqry);
//Set $roles to gather roles
while($roles = mysql_fetch_assoc($roleresult)) {

//Echo out the rest of the user details into the table
echo "<td>".$roles['Admin']."</td>";
echo "<td>".$roles['Create User']."</td>";
echo "<td>".$roles['Edit User']."</td>";
echo "<td>".$roles['SandS']."</td>";
echo "<td>".$roles['SandS Admin']."</td>";
//Echo the hidden ID field, for editing, along with the edit button
}
echo "<td><input type='text' name='id' size='1' value='".$row['User ID']."' readonly style='visibility:hidden;width:1px;'>
            <input type='submit' value='Edit'></td></tr></form>";
echo "<tr><td colspan='11'><hr /></td></tr>";
$count = $count + 1;
}
?>

这显然结束了循环。但我现在别无选择,只能在此之后回显设置变量$ count,将其放在页面底部:

echo "<br />".$count." user's found";

5 个答案:

答案 0 :(得分:2)

在循环时不是打印表行,而是可以将它们连接到变量并稍后打印。

像这样:

$output = '';
$i = 0;

while($row = mysql_fetch_array($result))
{
    $i++;
    $output .= ....
}

echo $i;
echo $output;

但是如果要打印出所有行,你应该使用mysql_num_rows()而不是用这种方式计算它们。

答案 1 :(得分:0)

这里有很多可能性,这很快又很脏

<html>...<body>
Rows found: <span id="rowcount">still calculating</span>
<table>
....
</table>
<script language="JavaScript">
document.getElementById('rowcount').innerHTML='<?php echo $rowcount; ?>';
</script>
...
</html>

答案 2 :(得分:0)

嗯,它不是很清楚,但你可以在变量中创建表,然后先打印增量:

$i=0;
$table = '<table>';
while($row = mysql_fetch_array($result))
{
  $table .= '<tr><td>'.htmlentities($row['field']).'</td></tr>';
  $i++;
}
$table .= '</table>';

echo $i;
echo $table;

答案 3 :(得分:0)

您可以使用mysql_num_rows()简单地计算结果集中的行数吗? 然后你可以在表开始之前设置计数:

Count: <?php echo mysql_num_rows($result) ?>
<table>...</table>

答案 4 :(得分:0)

我会将逻辑与页面的显示分开。 因此,您应首先收集所需的所有数据,然后进行演示。

Smarty这样的模板系统可能对此有所帮助。快速修复它应该足以将表存储在变量中,然后在加载完所有数据后打印它。