4

对于我的新项目,我想要一种不需要在每个数据库请求上重新加载页面的现代方法。:) 我希望脚本查询数据库并使用查询信息创建一个表。

我尝试了在互联网上找到的不同脚本。下面的一个最接近我的需要。

索引.php

<!DOCTYPE html PUBLIC '-//W3C//DTD XHTML 1.0 Transitional//EN' 'http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd'>
<html xmlns='http://www.w3.org/1999/xhtml'>
<head>
<title>Display Page</title>
<meta http-equiv='Content-Type' content='text/html; charset=utf-8' />
<script language='JavaScript' type='text/javascript' src='https://ajax.googleapis.com/ajax/libs/jquery/1.6.4/jquery.min.js'></script>
</head>

<body>
<button type='button' name='getdata' id='getdata'>Get Data.</button>

<div id='result_table'>

</div>

<script type='text/javascript' language='javascript'>
$('#getdata').click(function(){

$.ajax({
        url: 'getdata.php',
        type:'POST',
        dataType: 'json',
        success: function(output_string){
                $('#result_table').append(output_string);
            } // End of success function of ajax form
        }); // End of ajax call    

});
</script>
</body>
</html>

获取数据.php

<?php
include('conn.inc.php');
//Query of facebook database
$facebook = mysql_query('SELECT * FROM users')
or die(mysql_error());

//Output results
if(!$facebook)
{
    mysql_close();
    echo json_encode('There was an error running the query: ' . mysql_error());
}
elseif(!mysql_num_rows($facebook))
{
    mysql_close();
    echo json_encode('No results returned');
}
else
{
    $output_string = '';
    $output_string .=  '<table border="1">';
    while($row = mysql_fetch_assoc($facebook))
    {
        $output_string .= '<tr>';
        foreach($row as $value)
        {
            $output_string .= '<td>{$value}</td>';
        }
        $output_string .= '</tr>';
    }
    $output_string .= '</table>';
}

mysql_close();
// This echo for jquery 
echo json_encode($output_string);

?>

但我只得到一张桌子里面有一堆 {$value} 的桌子。我只尝试了 $value 但得到了一堆零。

我尝试了一个简单的脚本

$query = "SELECT users_name, users_password FROM users WHERE users_name = 'name'";
$result = mysql_query($query) or die(mysql_error());

$row = mysql_fetch_array($result);

echo $row['users_name'];

然后我得到了一些结果,但是使用这个脚本我必须在每次搜索时刷新页面。需要明确的是,我希望能够使用 mysql 数据库中的信息创建一个表,并将其显示在屏幕上并重新加载页面。

有任何想法吗?

4

4 回答 4

2

您应该只使用 $value 而不是 {$value}。在 while 循环中不需要另一个 foreach 循环。

$output_string = '';
$output_string .=  '<table border="1">';
while($row = mysql_fetch_assoc($facebook))
{
    $output_string .= '<tr>';
    $output_string .= '<td>'.$row['Your table column name here'].'</td>';
    $output_string .= '</tr>';
}
$output_string .= '</table>';
于 2012-11-08T07:11:36.520 回答
0

代替

$output_string .= '<td>{$value}</td>';

尝试

$output_string .= "<td>{$value}</td>";

即用双引号替换单引号。

请参阅此处的文档,其中说:

当在双引号中指定字符串时...变量在其中解析。

变量......当它们出现在单引号字符串中时不会被扩展。

于 2012-11-08T07:07:02.583 回答
0

您可以反转逻辑,并在客户端使用自动执行此操作的库,例如http://phery-php-ajax.net 而不是在服务器端创建表,将其作为 JSON 发送到浏览器,这更快,并建立你的表:

Phery::instance()->set(array(
'load' => function(){
  /* rest of mysql code */
  $rows = array();
  while($row = mysql_fetch_assoc($facebook)) { $rows[] = $row; }
  return PheryResponse::factory()->json($rows);
})->process();

然后在客户端里面$(function(){});

$(function(){
  var $result_table = $('#result_table'); 
  $result_table.phery('make', 'load');
  $result_table.bind('phery:json', function(e, data){
    var $this = $(this);
    for (var i = 0; i < data.length; i++) {
      $this.append($('<tr/>', {
        'html': '<td>' + data[i].row_name + '</td>'
      }));
    }
  });
  $result_table.phery('remote');
});
于 2012-11-12T03:04:22.437 回答
0

100% 工作 只需删除结束标签。例如,当打开标签并将其存储在 $output_string 中时,切勿包含结束部分......

然后不要在引号中包含 $value... 将其放在引号之外,然后用点分号分隔 $value 和右引号。

于 2021-07-24T10:35:47.463 回答