是这样的  是在index中输入一段文字  在result中返回结果,result要查询数据库,现在可以把数据库中的信息都显示,但是我想让它只显示与tqym中返回结果相同的数据  要怎么改下  谢谢  我是用dreamweaver做的  可能用dreamweaver打开比较清晰代码
tqym.php:<?
$wz = $_POST['wzsr'];
function get_domain($url)
{
......
}// end function
$ym = get_domain($wz);
?>result.php:<?php require_once('Connections/dl.php'); ?>
<?php include"tqtm.php"; ?>
<?php
if (!function_exists("GetSQLValueString")) {
function GetSQLValueString($theValue, $theType, $theDefinedValue = "", $theNotDefinedValue = "") 
{
  $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_Recordset1 = 10;
$pageNum_Recordset1 = 0;
if (isset($_GET['pageNum_Recordset1'])) {
  $pageNum_Recordset1 = $_GET['pageNum_Recordset1'];
}
$startRow_Recordset1 = $pageNum_Recordset1 * $maxRows_Recordset1;
mysql_select_db($database_dl, $dl);
$query_Recordset1 = "SELECT * FROM ym";
$query_limit_Recordset1 = sprintf("%s LIMIT %d, %d", $query_Recordset1, $startRow_Recordset1, $maxRows_Recordset1);
$Recordset1 = mysql_query($query_limit_Recordset1, $dl) or die(mysql_error());
$row_Recordset1 = mysql_fetch_assoc($Recordset1);
if (isset($_GET['totalRows_Recordset1'])) {
  $totalRows_Recordset1 = $_GET['totalRows_Recordset1'];
} else {
  $all_Recordset1 = mysql_query($query_Recordset1);
  $totalRows_Recordset1 = mysql_num_rows($all_Recordset1);
}
$totalPages_Recordset1 = ceil($totalRows_Recordset1/$maxRows_Recordset1)-1;
?><!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>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>无标题文档</title>
</head>
<body>
<?php do { ?>
  <table width="200" border="0">
    <tr>
      <td><?php echo $row_Recordset1['ym']; ?></td>
      <td>&nbsp;</td>
      <td>&nbsp;</td>
    </tr>
    <tr>
      <td>zh:</td>
      <td><?php echo $row_Recordset1['zhanghao']; ?></td>
      <td>是</td>
    </tr>
    <tr>
      <td>mm:</td>
      <td><?php echo $row_Recordset1['mima']; ?></td>
      <td>否</td>
    </tr>
      </table>
  <?php } while ($row_Recordset1 = mysql_fetch_assoc($Recordset1)); ?></body>
</html>
<?php
mysql_free_result($Recordset1);
?>

解决方案 »

  1.   

    补充:数据表:ym zhanghao mima
    就是result。php在查询数据库的时候要匹配tqym.php中%ym这个变量的内容来查找
      

  2.   

    执行一条Where语句就可以了,不知道楼主写这么多SQL干嘛?还有从数据库查询以后,不要do...while,而是while....do
      

  3.   

    我是用Dreamweaver做的  自动生成的  能再详细点吗  我用where $ym  就无法显示该页了
      

  4.   

    highlight_string('<? 
    $wz = $_POST['wzsr']; 
    function get_domain($url) 

    ...... 
    }// end function 
    $ym = get_domain($wz); 
    ?> result.php: <?php require_once('Connections/dl.php'); ?> 
    <?php include"tqtm.php"; ?> 
    <?php 
    if (!function_exists("GetSQLValueString")) { 
    function GetSQLValueString($theValue, $theType, $theDefinedValue = "", $theNotDefinedValue = "") 

      $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_Recordset1 = 10; 
    $pageNum_Recordset1 = 0; 
    if (isset($_GET['pageNum_Recordset1'])) { 
      $pageNum_Recordset1 = $_GET['pageNum_Recordset1']; 

    $startRow_Recordset1 = $pageNum_Recordset1 * $maxRows_Recordset1; 
    mysql_select_db($database_dl, $dl); 
    $query_Recordset1 = "SELECT * FROM ym"; 
    $query_limit_Recordset1 = sprintf("%s LIMIT %d, %d", $query_Recordset1, $startRow_Recordset1, $maxRows_Recordset1); 
    $Recordset1 = mysql_query($query_limit_Recordset1, $dl) or die(mysql_error()); 
    $row_Recordset1 = mysql_fetch_assoc($Recordset1); 
    if (isset($_GET['totalRows_Recordset1'])) { 
      $totalRows_Recordset1 = $_GET['totalRows_Recordset1']; 
    } else { 
      $all_Recordset1 = mysql_query($query_Recordset1); 
      $totalRows_Recordset1 = mysql_num_rows($all_Recordset1); 

    $totalPages_Recordset1 = ceil($totalRows_Recordset1/$maxRows_Recordset1)-1; 
    ?> <!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> 
    <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> 
    <title>无标题文档 </title> 
    </head> 
    <body> 
    <?php do { ?> 
      <table width="200" border="0"> 
        <tr> 
          <td> <?php echo $row_Recordset1['ym']; ?> </td> 
          <td>&nbsp; </td> 
          <td>&nbsp; </td> 
        </tr> 
        <tr> 
          <td>zh: </td> 
          <td> <?php echo $row_Recordset1['zhanghao']; ?> </td> 
          <td>是 </td> 
        </tr> 
        <tr> 
          <td>mm: </td> 
          <td> <?php echo $row_Recordset1['mima']; ?> </td> 
          <td>否 </td> 
        </tr> 
          </table> 
      <?php } while ($row_Recordset1 = mysql_fetch_assoc($Recordset1)); ?> </body> 
    </html> 
    <?php 
    mysql_free_result($Recordset1); 
    ?>')楼主:没法给你回啊!!你什么都不讲,要我们来改你这个,啥都不知道啊
      

  5.   

    这是所有源代码啊  能上传附件吗这样说吧  应该是改这句  $query_Recordset1 = "SELECT * FROM ym";
    还有一个文件tqym.php  处理结果是一个字符串  $ym = "...";  我要在result.php文件中查询时匹配这个字符串怎么写?
    <?php include"tqtm.php"; ?>
    <?
    ......
    $query_Recordset1 = "SELECT * FROM ym Where $ym";
    ......
    ?>
    这样吗?
      

  6.   

    $query_Recordset1 = "SELECT * FROM ym Where ym=$ym"; PS.你以后最好别把表和字段起相同的名字
      

  7.   

    还是显示错误  <?php include"tqtm.php"; ?>写在文件开头应该没错吧