php连接数据库代码

php连接数据库代码,第1张

根据你贴出来的意思是没有定义这个函数mysql_pconnect()

估计你是调用了一个mysql *** 作类的程序来 *** 作数据库,

第一,看看你的mysql_pconnect函数名称是否写错

第二,如果是调用了类里面的函数,看看你有没有重新创建类

例如:$doc = new DB_Doc_Read();//new 一个类

$doc->mysql_pconnect();//调用类中的函数

第三,如果没有调用类,是直接写的函数,那应该是mysql_connect函数

验证码一般跟你的系统没有关系,因为是显示在客户端的,把你代码贴出来我看看。

在html中调用php内容,可以用<script src="friendlinksphp"></script>然后在friendlinksphp中调取数据库数据。并输出适当的html,或者输出xml、json都可以,只是图简单的话,只要输出html就行了。

1、首先,新建一个php_mysqlphp的文件

2、其次,查看mysql服务是否打开,或者客户端的mysql能够正常打开。

       鼠标右键电脑--》管理--》服务和应用程序--》服务--》找到mysql服务,看看是不是启用状态。

看看能不能打开客户端。

3、如果上面的可以了,那么就进入正题了,php连接mysql代码实例。

4、最后运行这个文件,看看运行结果吧。

不知道你的错误信息是什么?

$sql = "select from e_user where username='$username' ";这一句最好改为:

$sql = "select from e_user where username='"$username"' ";

Oracle(甲骨文)是世界上最为流行的关系数据库。它是大公司推崇的工业化的强有力的引擎。我们先看看其相关的函数:

(1)integer

ora_logon(string

user

,

string

password)

开始对一个Oracle数据库服务器的连接。

(2)integer

ora_open(integer

connection)

打开给出的连接的游标。

(3)integer

ora_do(integer

connection,

string

query)

在给出的连接上执行查询。PHP生成一个指示器,解析查询,并执行之。

(4)integer

ora_parse(integer

cursor,

string

query)

解析一个查询并准备好执行。

(5)boolean

ora_exec(integer

cursor)

执行一个先前由ora_parse函数解析过的查询。

(6)boolean

ora_fetch(integer

cursor)

此函数会使得一个执行过的查询中的行被取到指示器中。这使得您可以调用ora_getcolumn函数。

(7)string

ora_getcolumn(integer

cursor,

integer

column)

返回当前的值。列由零开始的数字索引。

(8)boolean

ora_logoff(integer

connection)

断开对数据库服务器的链接。

以下是向ORACLE数据库插入数据的示例程序:

<html>

<head><title>向ORACLE数据库中插入数据</title></head>

<body>

<form

action="<echo

$PHP_SELF;>"

method="post">

<table

border="1"

cellspacing="0"

cellpadding="0">

<tr>

<th>ID</th>

<th>name</th>

<th>Description</th>

</tr>

<tr>

<td><input

type="text"

name="name"

maxlength="50"

size="10"></td>

<td><input

type="text"

name="email"

maxlength="255"

size="30"></td>

<td><input

type="text"

name="Description"

maxlength="255"

size="50"></td>

</tr>

<tr

align="center">

<td

colspan="3"><input

type="submit"

value="提交"> <input

type="reset"

value="重写"></td>

</tr>

</table>

</form>

<

//先设置两个环境变量ORACLE_HOME,ORACLE_SID

putenv("ORACLE_HOME=/oracle/app/oracle/product/804");

putenv("ORACLE_SID=ora8");

//设置网页显示中文

putenv("NLS_LANG=Simplified_Chinesezhs16cgb231280");

if($connection=ora_logon("scott","tiger"))

{

//库表test有ID,name,Description三项

$sql

=

'insert

into

test(ID,name,Description)

values

';

$sql

=

'(''

$ID

'',''

$name

'',''

$Description

'')';

if($cursor=ora_do($connect,$sql))

{

print("insert

finished!");

}

$query

=

'select

from

test';

if($cursor=ora_do($connect,$query))

{

ora_fetch($cursor);

$content0=ora_getcolumn($cursor,0);

$content1=ora_getcolumn($cursor,1);

$content2=ora_getcolumn($cursor,2);

print("$content0");

print("$content1");

print("$content2");

ora_close($cursor);

}

ora_logoff($connection);

}

>

</body>

</html>

<php

/

Created on 2007-6-8

Programmer : Alan , Msn - haowubai@hotmailcom

PHP100com Develop a project PHP - MySQL - Apache

Window - Preferences - PHPeclipse - PHP - Code Templates

/

//为了避免重复包含文件而造成错误,加了判断函数是否存在的条件:

if(!function_exists(pageft)){

//定义函数pageft(),三个参数的含义为:

//$totle:信息总数;

//$displaypg:每页显示信息数,这里设置为默认是20;

//$url:分页导航中的链接,除了加入不同的查询信息“page”外的部分都与这个URL相同。

// 默认值本该设为本页URL(即$_SERVER["REQUEST_URI"]),但设置默认值的右边只能为常量,所以该默认值设为空字符串,在函数内部再设置为本页URL。

function pageft($totle,$displaypg=20,$url=''){//定义几个全局变量:

//$page:当前页码;

//$firstcount:(数据库)查询的起始项;

//$pagenav:页面导航条代码,函数内部并没有将它输出;

//$_SERVER:读取本页URL“$_SERVER["REQUEST_URI"]”所必须。

global $page,$firstcount,$pagenav,$_SERVER;//为使函数外部可以访问这里的“$displaypg”,将它也设为全局变量。注意一个变量重新定义为全局变量后,原值被覆盖,所以这里给它重新赋值。

$GLOBALS["displaypg"]=$displaypg;if(!$page) $page=1;//如果$url使用默认,即空值,则赋值为本页URL:

if(!$url){ $url=$_SERVER["REQUEST_URI"];}//URL分析:

$parse_url=parse_url($url);

$url_query=$parse_url["query"]; //单独取出URL的查询字串

if($url_query){

//因为URL中可能包含了页码信息,我们要把它去掉,以便加入新的页码信息。

//这里用到了正则表达式,请参考“PHP中的正规表达式”

$url_query=ereg_replace("(^|&)page=$page","",$url_query);//将处理后的URL的查询字串替换原来的URL的查询字串:

$url=str_replace($parse_url["query"],$url_query,$url);//在URL后加page查询信息,但待赋值:

if($url_query) $url="&page"; else $url="page";

}else {

$url="page";

}//页码计算:

$lastpg=ceil($totle/$displaypg); //最后页,也是总页数

$page=min($lastpg,$page);

$prepg=$page-1; //上一页

$nextpg=($page==$lastpg 0 : $page+1); //下一页

$firstcount=($page-1)$displaypg;//开始分页导航条代码:

$pagenav="显示第 <B>"($totle($firstcount+1):0)"</B>-<B>"min($firstcount+$displaypg,$totle)"</B> 条记录,共 $totle 条记录";//如果只有一页则跳出函数:

if($lastpg<=1) return false;$pagenav=" <a href='$url=1'>首页</a> ";

if($prepg) $pagenav=" <a href='$url=$prepg'>前页</a> "; else $pagenav=" 前页 ";

if($nextpg) $pagenav=" <a href='$url=$nextpg'>后页</a> "; else $pagenav=" 后页 ";

$pagenav=" <a href='$url=$lastpg'>尾页</a> ";//下拉跳转列表,循环列出所有页码:

$pagenav=" 到第 <select name='topage' size='1' onchange='windowlocation=\"$url=\"+thisvalue'>\n";

for($i=1;$i<=$lastpg;$i++){

if($i==$page) $pagenav="<option value='$i' selected>$i</option>\n";

else $pagenav="<option value='$i'>$i</option>\n";

}

$pagenav="</select> 页,共 $lastpg 页";

}

}

>

<

/

//(前面程序略)include("pageftphp"); //包含“pageftphp”文件

//取得总信息数

$result=mysql_query("select from mytable");

$total=mysql_num_rows($result);

//调用pageft(),每页显示10条信息(使用默认的20时,可以省略此参数),使用本页URL(默认,所以省略掉)。

pageft($total,10);

//现在产生的全局变量就派上用场了:

$result=mysql_query("select from mytable limit $firstcount,$displaypg ");

while($row=mysql_fetch_array($result)){

//(列表内容略)

}//输出分页导航条代码:

echo $pagenav;//(后面程序略)

/

>

以上就是关于php连接数据库代码全部的内容,包括:php连接数据库代码、html通过php调用数据库、php连接mysql代码怎么使用等相关内容解答,如果想了解更多相关内容,可以关注我们,你们的支持是我们更新的动力!

欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/sjk/10083936.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2023-05-05
下一篇 2023-05-05

发表评论

登录后才能评论

评论列表(0条)

保存