English 中文(简体)
• 如何创建新闻社
原标题:How to Create a Newsfeed (AJAX Newsfeed)

我有一个信息系统,更具体地说是一个信息系统,是一个票价系统。 信息系统将包含有一定用户或一定用户的账户。 我希望用户能够看到其他用户的行动或新闻内容的变化。 (如Facebook)。 我将利用PHP、MySQL和AJAX(or jQuery)执行新闻。 我将知道如何确定表格和问询。

我如何利用PHP和AJAX或j Query来拉动内容,并在新闻中展示(在Facebook新闻剧中,有的放大或滚动效应?)

我一直在寻找好的辅导,没有找到。 我最好尽可能从头开始。

我仍然有几个问题: 在这方面,我已经:

ajax.php

<?php require_once( ../../Connections/f12_database_connect.php ); ?>
<?php
if (!function_exists("GetSQLValueString")) {
function GetSQLValueString($theValue, $theType, $theDefinedValue = "", $theNotDefinedValue = "") 
{
  if (PHP_VERSION < 6) {
    $theValue = get_magic_quotes_gpc() ? stripslashes($theValue) : $theValue;
  }

  $theValue = function_exists("mysql_real_escape_string") ? mysql_real_escape_string($theValue) : mysql_escape_string($theValue);

  switch ($theType) {
    case "text":
      $theValue = ($theValue != "") ? " " . $theValue . " " : "NULL";
      break;    
    case "long":
    case "int":
      $theValue = ($theValue != "") ? intval($theValue) : "NULL";
      break;
    case "double":
      $theValue = ($theValue != "") ? doubleval($theValue) : "NULL";
      break;
    case "date":
      $theValue = ($theValue != "") ? " " . $theValue . " " : "NULL";
      break;
    case "defined":
      $theValue = ($theValue != "") ? $theDefinedValue : $theNotDefinedValue;
      break;
  }
  return $theValue;
}
}

mysql_select_db($database_f12_database_connect, $f12_database_connect);
$query_newsfeed_a = "SELECT * FROM newsfeed";
$newsfeed_a = mysql_query($query_newsfeed_a, $f12_database_connect) or die(mysql_error());


while($row_newsfeed_a = mysql_fetch_assoc($newsfeed_a))
{
        echo("<div class= feedItem >");
    echo("<div class= title >" . $feedItem[ title ] . "</div>");
    echo("<div class= body >" . $feedItem[ body ] . "</div>");
    echo("</div>");



}
$totalRows_newsfeed_a = mysql_num_rows($newsfeed_a);
?>

<?php
mysql_free_result($newsfeed_a);
?>

饲料。

<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
<title>Untitled Document</title>

<script>
    function refreshNews()
    {
        $("#news").load("ajax.php")
    }
</script>
</head>

<body>





<div id="news"></div>
</body>
</html>

我做了什么错误?

最佳回答

如果你想从零敲碎打中将其编码,那么基本程序就是创建一种收集数据并寄回美国宇宙航空研究开发机构要求的PHP。 通常,我建立一个单独的PHP文件,处理我所需要的一切业务。

贵重物品通常会产出的,将回复到日本宇宙航空研究开发机构的请求。 因此,任何超文本标签,任何对应/打印说明。 象头盔这样的事情也产生了产出,只是警告。

视网页设计而定,你可以在PHP中制造超文本,然后使用 j,必要时将这html放在网页上。 另一种选择是使用PHP s json_encode()并将所有数据作为JSON,并建立超文本结构客户。

如果每个饲料项目都有同样的基本结构,那么,像你那样,在项目组合中建立超文本服务器,可能最容易。 你们只需要作为原料的超文本。

The simplest method would be jQuery.load() http://api.jquery.com/load/

在超文本中:

<script>
    function refreshNews()
    {
        $("#news").load("path/to/ajax.php")
    }
</script>

<div id="news"></div>

PHP:

$sql = "SQL TO GET NEWS FEED";

$result = mysql_query($sql);

while($feedItem = mysql_fetch_assoc($result))
{
    echo("<div class= feedItem >");
    echo("<div class= title >" . $feedItem[ title ] . "</div>");
    echo("<div class= body >" . $feedItem[ body ] . "</div>");
    echo("</div>");
}

然后,你可以打电话给另一场活动(Refreshutton,时间性活动等)。

显然,你的html和数据结构可能有所不同。 确实,这是购买力平价提交产出的唯一东西。 这包括在标签之外的任何东西。

这样做有更有效的方法,这一文字基本上将重载每份要求更新新闻的所有新闻项目清单。 现在,这是使其开展工作的最容易的方法之一,因此尝试了,如果需要,则有更有效的方法。

问题回答

克里斯·答案很好地概述了这一概念,但不会提供真正的时间更新。

我们使用Ajax Pushmedia,用于我们的实际工作时间应用。

如果你在使用PHP和Jquery时死亡, 您可以使用与Chris在服务器方面建议的内容相似的东西,在客户方面,可以同时使用一个时间子,每当一个月就发射一次麻风机。

这只是一种想法,而不是我测试的实用守则,而类似于:

setInterval ( 
    function(){
        $.get("yourScriptName.php", { userID: 555},
            function(data){
                //update your news feed with data received via ajax request here.
            });
    }, 30000 );

w3c s setInterval() 文件 for more details.





相关问题
SQL SubQuery getting particular column

I noticed that there were some threads with similar questions, and I did look through them but did not really get a convincing answer. Here s my question: The subquery below returns a Table with 3 ...

please can anyone check this while loop and if condition

<?php $con=mysql_connect("localhost","mts","mts"); if(!con) { die( unable to connect . mysql_error()); } mysql_select_db("mts",$con); /* date_default_timezone_set ("Asia/Calcutta"); $date = ...

php return a specific row from query

Is it possible in php to return a specific row of data from a mysql query? None of the fetch statements that I ve found return a 2 dimensional array to access specific rows. I want to be able to ...

Character Encodings in PHP and MySQL

Our website was developed with a meta tag set to... <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" /> This works fine for M-dashes and special quotes, etc. However, I ...

Pagination Strategies for Complex (slow) Datasets

What are some of the strategies being used for pagination of data sets that involve complex queries? count(*) takes ~1.5 sec so we don t want to hit the DB for every page view. Currently there are ~...

Averaging a total in mySQL

My table looks like person_id | car_id | miles ------------------------------ 1 | 1 | 100 1 | 2 | 200 2 | 3 | 1000 2 | 4 | 500 I need to ...

热门标签