我有一个信息系统,更具体地说是一个信息系统,是一个票价系统。 信息系统将包含有一定用户或一定用户的账户。 我希望用户能够看到其他用户的行动或新闻内容的变化。 (如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>
我做了什么错误?