首页 诗词 字典 板报 句子 名言 友答 励志 学校 网站地图
当前位置: 首页 > 教程频道 > 网站开发 > PHP >

如何让记录集“内容不重复出现”

2013-07-04 
怎么让记录集“内容不重复出现”?php require_once(Conn/hx98.php) ??phpif (!function_exists(GetSQ

怎么让记录集“内容不重复出现”

<?php require_once('Conn/hx98.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;
}
}

$maxRows_hx = 10;
$pageNum_hx = 0;
if (isset($_GET['pageNum_hx'])) {
  $pageNum_hx = $_GET['pageNum_hx'];
}
$startRow_hx = $pageNum_hx * $maxRows_hx;
 mysql_query("set names utf8");
mysql_select_db($database_hx98, $hx98);
$query_hx = "SELECT * FROM content_publish ORDER BY content_id DESC";
$query_limit_hx = sprintf("%s LIMIT %d, %d", $query_hx, $startRow_hx, $maxRows_hx);
$hx = mysql_query($query_limit_hx, $hx98) or die(mysql_error());
$row_hx = mysql_fetch_assoc($hx);



if (isset($_GET['totalRows_hx'])) {
  $totalRows_hx = $_GET['totalRows_hx'];


} else {
  $all_hx = mysql_query($query_hx);
  $totalRows_hx = mysql_num_rows($all_hx);
}
$totalPages_hx = ceil($totalRows_hx/$maxRows_hx)-1;
?>







 <?php do { ?>
  <li>
      <?php echo $row_hx['content_original_autor']; ?>
    </li>
    <?php } while ($row_hx = mysql_fetch_assoc($hx)); ?>


我想把数据库中 $row_hx['content_original_autor']; 按 10条一页显示出来,但是去掉重复显示的,也就是说 $row_hx['content_original_autor']; 如果有一样的内容 则不显示。 MySQL PHP String 函数 数据库
[解决办法]
$query_hx = "SELECT * FROM content_publish group by content_original_autor ORDER BY content_id DESC";
试试

热点排行