mysql php
情景描述:查询两台服务器上的数据库,提取用户数据。
① 将数据列表显示,已成功
<?php/* Filename[book.php] */require_once("header.php");#连接另一台数据库$mysql_ = new MySqlList();#获取通讯录$addrPersons= empty($_SESSION['uid'])?null:$mysql->getAddrPerson($_SESSION['uid']); //个人//个人通讯录$dataPers = (empty($addrPersons['addrperson']))?array():json_decode(base64_decode($addrPersons['addrperson']),true);//$addrPersons array();#获取公司通讯录$stafflists = $mysql->getDomainUserList($domain);$stafflists_ = $mysql_->getDomainUserList($domain);debug(count($stafflists)); //29debug(count($stafflists_)); //57
② 提供搜索,在单独的搜索页再次提取两台服务器上的用户数据,并根据关键词进行过滤。
此时PHP终止,Fatal error: Call to undefined function mysql_query()
<?php/* Filename[book_search.php] */date_default_timezone_set('PRC');Header("content=text/html; charset=UTF-8");session_start();require_once (dirname(__FILE__) . "/../classes/action/initialize.php");require_once (dirname(__FILE__) . "/../classes/mode/xmlparse.inc");require_once (dirname(__FILE__) . "/../classes/mode/mysql_mode_class.php");require_once (dirname(__FILE__) . "/../classes/mode/mysql_list_class.php");#连接本地数据库$mysql = new MySqlModeMail();#连接另一台数据库//$othersql = new MySqlList();#获取通讯录$addrPersons= empty($_SESSION['uid'])?null:$mysql->getAddrPerson($_SESSION['uid']); //个人$dataPers = (empty($addrPersons['addrperson']))?array():json_decode(base64_decode($addrPersons['addrperson']),true);//$addrPersons null#获取公司通讯录$stafflists = $mysql->getDomainUserList($domain);//$stafflists_ = $othersql->getDomainUserList($domain);debug($stafflists);exit;//debug($stafflists_);
可能是哪一步出错?
回复讨论(解决方案)
在你贴出的代码中,没有看到 mysql_query
你只能根据错误信息指示的行号排查错误
php代码中数据库的密码要和电脑里的数据库中的密码一样
require_once (dirname(__FILE__) . "/../classes/mode/mysql_mode_class.php");require_once (dirname(__FILE__) . "/../classes/mode/mysql_list_class.php");//这两行也有在header.php中包含//这两个类中的执行函数是一样的 class MySqlList { //sql params public $server; public $username; public $password; public $database; public $code; function MySqlList(){ global $webpost;// include("xmlparse.inc"); $sqlist = parse_xml_config($webpost['path']['sqlist'],"sqlist"); if(!empty($sqlist) && is_array($sqlist)){ foreach($sqlist['list'] as $list){ if(strcmp($list['server'],$_SERVER['SERVER_ADDR'])){ $config = $list; } }//end for }//end if if(empty($config)) die("读取MySql配置出错。"); $this->server = $config['server']; $this->username = $config['username']; $this->password = $config['password']; $this->database = $config['database']; } //connect sql function connect(){ $connect = mysql_connect($this->server, $this->username, $this->password); if (!$connect){ die("服务器连接失败:".mysql_error()); } $conn = mysql_select_db($this->database,$connect) or die("数据库连接失败!<br/>"); mysql_query("set names utf8"); return $connect; } //execute sql function querySql($sql,$array=2,$fail=false,$succe=false,$suc_href=false,$type=MYSQL_ASSOC){ global $webpost; $result = mysql_query($sql,$this->connect()); //提示在这里终止 if(!$result) die("SQL: {$sql} <br>Error: " . mysql_error() ); if (mysql_affected_rows() >0){// write_sys_log("success SQL:".$sql); switch($array){ case 1: $arry = array(); while($arr = @mysql_fetch_array($result,$type)){ array_push($arry,$arr); } return $arry; case 2: $arr = @mysql_fetch_array($result,$type); return $arr; default: return 1; } }elseif(mysql_affected_rows() == 0 && !mysql_errno()){// write_sys_log("empty SQL:".$sql); return false; }elseif(mysql_errno()){// write_sys_log("failed SQL:".$sql); return 0; } mysql_close(); } #获取另一台数据库的用户数据 function getDomainUserList($domain){ $sql = "SELECT m.id,m.did,m.code,username,realname,domain FROM table_a m ". "JOIN table_b d ON m.did=d.id WHERE domain='{$domain}'"; return $this->querySql($sql,1); } }
思路上大概哪里有问题?
除 mysql_query 外,其他 mysql 族函数均没有报错
只能说 mysql 扩展安装(编译)错误
但是,我在提取用户数据后,是可以列表显示的。
只是在单独的搜索页却出现这个问题。
你提供的信息太少
不排除个别应用中单词拼写错误
终于排查出来了,是因为单独的搜索页没有获取到$_SESSION。
但是我加session_start()了,而且是由前面的列表页,通过$.ajax获取搜索页的内容。
为什么搜索页的$_SESSION是空的?
在 $_SESSION 为空的程序中检查 get_included_files 返回的文件列表
通常 session_start() 宜放在全局的公共文件中
况且 php 5.4 还会检查该函数是否被执行过,如执行过将会产生警告信息
问题解决了。
原因:在搜索页的包含页中,header()和session_start()的位置搞错了。把包含页中的header注掉就好了。

Long URLs, often cluttered with keywords and tracking parameters, can deter visitors. A URL shortening script offers a solution, creating concise links ideal for social media and other platforms. These scripts are valuable for individual websites a

Laravel simplifies handling temporary session data using its intuitive flash methods. This is perfect for displaying brief messages, alerts, or notifications within your application. Data persists only for the subsequent request by default: $request-

Laravel provides concise HTTP response simulation syntax, simplifying HTTP interaction testing. This approach significantly reduces code redundancy while making your test simulation more intuitive. The basic implementation provides a variety of response type shortcuts: use Illuminate\Support\Facades\Http; Http::fake([ 'google.com' => 'Hello World', 'github.com' => ['foo' => 'bar'], 'forge.laravel.com' =>

This is the second and final part of the series on building a React application with a Laravel back-end. In the first part of the series, we created a RESTful API using Laravel for a basic product-listing application. In this tutorial, we will be dev

The PHP Client URL (cURL) extension is a powerful tool for developers, enabling seamless interaction with remote servers and REST APIs. By leveraging libcurl, a well-respected multi-protocol file transfer library, PHP cURL facilitates efficient execution of various network protocols, including HTTP, HTTPS, and FTP. This extension offers granular control over HTTP requests, supports multiple concurrent operations, and provides built-in security features.

Do you want to provide real-time, instant solutions to your customers' most pressing problems? Live chat lets you have real-time conversations with customers and resolve their problems instantly. It allows you to provide faster service to your custom

The 2025 PHP Landscape Survey investigates current PHP development trends. It explores framework usage, deployment methods, and challenges, aiming to provide insights for developers and businesses. The survey anticipates growth in modern PHP versio

In this article, we're going to explore the notification system in the Laravel web framework. The notification system in Laravel allows you to send notifications to users over different channels. Today, we'll discuss how you can send notifications ov


Hot AI Tools

Undresser.AI Undress
AI-powered app for creating realistic nude photos

AI Clothes Remover
Online AI tool for removing clothes from photos.

Undress AI Tool
Undress images for free

Clothoff.io
AI clothes remover

AI Hentai Generator
Generate AI Hentai for free.

Hot Article

Hot Tools

Dreamweaver CS6
Visual web development tools

Zend Studio 13.0.1
Powerful PHP integrated development environment

EditPlus Chinese cracked version
Small size, syntax highlighting, does not support code prompt function

SublimeText3 English version
Recommended: Win version, supports code prompts!

ZendStudio 13.5.1 Mac
Powerful PHP integrated development environment
