PHP
iteye_20975
这个作者很懒,什么都没留下…
展开
-
php ODBC 示例
<html> <body> <?php $conn=odbc_connect('ktv','',''); if (!$conn){ exit("Connection Failed: " . $conn); } $sql="SELECT * FROM tb_a...2009-07-03 10:50:00 · 82 阅读 · 0 评论 -
php 获取字段信息
获取字段信息mysql_fetch_field()mysql_num_fields()mysql_list_fields()mysql_field_flags()mysql_field_len()mysql_field_name()mysql_field_type()mysql_field_table()注意:字段的属性有:name ,table,max_length,not_n...2009-07-02 14:33:00 · 420 阅读 · 0 评论 -
php 数据库高级操作
数据库高级操作(1)获取报错信息mysql_error(),mysql_errno()string mysql_error([resource $link_identifier]);返回上一个mysql函数的错误文本,如果没有出错则返回空字符串int mysql_errno([resource $link_identifier]);返回上一个mysql函数的错误号码,如果没有出错则返回0例...2009-07-02 09:02:00 · 209 阅读 · 0 评论 -
php 数据库高级操作
数据库高级操作(1)获取报错信息mysql_error(),mysql_errno()string mysql_error([resource $link_identifier]);返回上一个mysql函数的错误文本,如果没有出错则返回空字符串int mysql_errno([resource $link_identifier]);返回上一个mysql函数的错误号码,如果没有出错则返回0例...2009-07-02 09:02:00 · 164 阅读 · 0 评论 -
php 显示数据表记录
processShowData.php<html> <head> <title>查询数据库表信息</title> </head> <body> <center> <form name="myForm"2009-07-01 15:51:00 · 134 阅读 · 0 评论 -
php 显示数据表记录
processShowData.php<html> <head> <title>查询数据库表信息</title> </head> <body> <center> <form name="myForm"2009-07-01 15:51:00 · 571 阅读 · 0 评论 -
php 删除数据库表中的记录
deleteData.php 页面<html> <head> </head> <body> <form name="frm" action="processDeleteData.php" method="post"> <table2009-07-01 15:30:00 · 117 阅读 · 0 评论 -
php 删除数据库表中的记录
deleteData.php 页面<html> <head> </head> <body> <form name="frm" action="processDeleteData.php" method="post"> <table2009-07-01 15:30:00 · 816 阅读 · 0 评论 -
php 向数据库表中插入数据
php插入数据页面insertData.php<html> <head> <title>向数据库中插入数据</title> </head> <body> <center> <form name="myForm&2009-07-01 14:03:00 · 254 阅读 · 0 评论 -
php 获取字段信息
获取字段信息mysql_fetch_field()mysql_num_fields()mysql_list_fields()mysql_field_flags()mysql_field_len()mysql_field_name()mysql_field_type()mysql_field_table()注意:字段的属性有:name ,table,max_length,not_n...2009-07-02 14:33:00 · 149 阅读 · 0 评论 -
php 辅助函数功能
辅助函数:mysql_client_encoding()mysql_get_server_info()mysql_get_host_info()mysql_get_client_info()mysql_stat()示例:<?php $link=mysql_connect("localhost","root","root") or die("couldn't connec...2009-07-02 14:52:00 · 111 阅读 · 0 评论 -
php ODBC 示例
<html> <body> <?php $conn=odbc_connect('ktv','',''); if (!$conn){ exit("Connection Failed: " . $conn); } $sql="SELECT * FROM tb_a...2009-07-03 10:50:00 · 201 阅读 · 0 评论 -
php ODBC数据源
ODBC 指的是(Application Programming Interface,API),使我们有能力连接到某个数据源(比如一个 MS Access 数据库)。创建 ODBC 连接通过一个 ODBC 连接,您可以连接到您的网络中的任何计算机上的任何数据库,只要 ODBC 连接是可用的。这是创建到达 MS Access 数据的 ODBC 连接的方法: 1. 在控制面板中打开管理工具...2009-07-03 10:02:00 · 106 阅读 · 0 评论 -
php ODBC数据源
ODBC 指的是(Application Programming Interface,API),使我们有能力连接到某个数据源(比如一个 MS Access 数据库)。创建 ODBC 连接通过一个 ODBC 连接,您可以连接到您的网络中的任何计算机上的任何数据库,只要 ODBC 连接是可用的。这是创建到达 MS Access 数据的 ODBC 连接的方法: 1. 在控制面板中打开管理工具...2009-07-03 10:02:00 · 160 阅读 · 0 评论 -
php mysqli多个查询
mysqli多个查询mysqli_multi_query(mysqli link,string query)连续执行多次查询,是基于过程的msyqli_more_results(mysqli link)主要确定返回的结果集是否有其他的结果集mysqli_next_result(mysqli link)获取下一个结果集示例:<?php #连接数据库 $link=mys...2009-07-02 15:56:00 · 105 阅读 · 0 评论 -
php mysqli多个查询
mysqli多个查询mysqli_multi_query(mysqli link,string query)连续执行多次查询,是基于过程的msyqli_more_results(mysqli link)主要确定返回的结果集是否有其他的结果集mysqli_next_result(mysqli link)获取下一个结果集示例:<?php #连接数据库 $link=mys...2009-07-02 15:56:00 · 117 阅读 · 0 评论 -
php mysqli扩展库
示例:<?php #连接数据库 $link=mysqli_connect("localhost","root","root"); #选择数据库 $link->select_db("rorely") or die("could not find database"); #查询数据库 $result=$link->2009-07-02 15:37:00 · 72 阅读 · 0 评论 -
php mysqli扩展库
示例:<?php #连接数据库 $link=mysqli_connect("localhost","root","root"); #选择数据库 $link->select_db("rorely") or die("could not find database"); #查询数据库 $result=$link->2009-07-02 15:37:00 · 96 阅读 · 0 评论 -
php 辅助函数功能
辅助函数:mysql_client_encoding()mysql_get_server_info()mysql_get_host_info()mysql_get_client_info()mysql_stat()示例:<?php $link=mysql_connect("localhost","root","root") or die("couldn't connec...2009-07-02 14:52:00 · 92 阅读 · 0 评论 -
php 向数据库表中插入数据
php插入数据页面insertData.php<html> <head> <title>向数据库中插入数据</title> </head> <body> <center> <form name="myForm&2009-07-01 14:03:00 · 1087 阅读 · 0 评论 -
php 建立数据库连接
(1) 建立连接(2)选择数据库(3) 执行SQL语句(4) 关闭数据库连接<?php $link=mysql_connect("localhost","root","root"); if($link)echo"连接数据库成功!"; else echo"连接数据库失败!"; $sele=mysql_select_db("com"2009-07-01 11:00:00 · 118 阅读 · 0 评论 -
php 建立数据库连接
(1) 建立连接(2)选择数据库(3) 执行SQL语句(4) 关闭数据库连接<?php $link=mysql_connect("localhost","root","root"); if($link)echo"连接数据库成功!"; else echo"连接数据库失败!"; $sele=mysql_select_db("com"2009-07-01 11:00:00 · 170 阅读 · 0 评论 -
php 接口--可以多实现。
接口的创建使用关键字interface,实现接口,使用关键字implements。接口的方法全部是public方法,而且没有方法体。一个类可以实现多个接口。示例如下:<?php interface myInterface{ const str="中国你好"; public function getV(); public functio...2009-06-28 13:56:00 · 337 阅读 · 0 评论 -
php 类继承--单继承
<?php class BaseClass{ function __construct(){ echo "<br><font color=red>this is the base class constructor</font><br>"; } } class Su...2009-06-28 13:34:00 · 117 阅读 · 0 评论 -
php 类继承--单继承
<?php class BaseClass{ function __construct(){ echo "<br><font color=red>this is the base class constructor</font><br>"; } } class Su...2009-06-28 13:34:00 · 195 阅读 · 0 评论 -
php 拷贝对象
clone方法的使用,浅拷贝对象。示例如下:<?php class Foo{ private $x; private $y; public function setX($x){ $this->x=$x; } public function setY($y){ ...2009-06-28 10:59:00 · 62 阅读 · 0 评论 -
php 拷贝对象
clone方法的使用,浅拷贝对象。示例如下:<?php class Foo{ private $x; private $y; public function setX($x){ $this->x=$x; } public function setY($y){ ...2009-06-28 10:59:00 · 67 阅读 · 0 评论 -
php构造函数和析构函数
构造函数:constructor析构函数:destructor在php5.1中,构造函数统一命名为:function __construct(){ #函数体}析构函数统一命名为:function __destruct(){ #函数体}注意,construct和destruct之前有两个下划线,不是一个下面给出一个构造函数的示例:<?php clas...2009-06-28 09:53:00 · 93 阅读 · 0 评论 -
php构造函数和析构函数
构造函数:constructor析构函数:destructor在php5.1中,构造函数统一命名为:function __construct(){ #函数体}析构函数统一命名为:function __destruct(){ #函数体}注意,construct和destruct之前有两个下划线,不是一个下面给出一个构造函数的示例:<?php clas...2009-06-28 09:53:00 · 73 阅读 · 0 评论 -
php中 涉及的类型提示
在php中,只有对象类型和数组类型,可以在定义函数的时候,在形参中添加类型提示。例如:<?php class MyClass{ public $var="这里用了类型提示"; }#类型提示,只能够是对象和数组类型。#对象 function MyFunction(MyClass $foo){ echo $foo->var; ...2009-06-28 09:46:00 · 69 阅读 · 0 评论 -
php 反射类
反射类ReflectionClass,其中包含的方法可以通过下面的方法获取:示例如下。<?php $class=new ReflectionClass("ReflectionClass"); $methods=$class->getMethods(); foreach($methods as $method) echo $method->...2009-06-28 15:00:00 · 103 阅读 · 0 评论 -
php 反射类
反射类ReflectionClass,其中包含的方法可以通过下面的方法获取:示例如下。<?php $class=new ReflectionClass("ReflectionClass"); $methods=$class->getMethods(); foreach($methods as $method) echo $method->...2009-06-28 15:00:00 · 80 阅读 · 0 评论 -
配置php与mysql的连接 php.ini文件
Call to undefined function mysql_connect()问题的解决方法配置php与mysql的连接 php.ini文件看加粗部分。; Windows Extensions; Note that ODBC support is built in, so no dll is needed for it.; Note that many DLL f...2009-07-01 10:13:00 · 866 阅读 · 0 评论 -
配置php与mysql的连接 php.ini文件
Call to undefined function mysql_connect()问题的解决方法配置php与mysql的连接 php.ini文件看加粗部分。; Windows Extensions; Note that ODBC support is built in, so no dll is needed for it.; Note that many DLL f...2009-07-01 10:13:00 · 423 阅读 · 0 评论 -
php shell_exec()与反撇号等价输出结果
<?php #使用反撇号,暗示作为命令来执行 $result=`date`; echo "<p>the server timestamp is: $result</p>"; echo "<hr color=red>"; #使用shell_exec() $result1=shell_exec("date...2009-06-30 15:50:00 · 101 阅读 · 0 评论 -
php shell_exec()与反撇号等价输出结果
<?php #使用反撇号,暗示作为命令来执行 $result=`date`; echo "<p>the server timestamp is: $result</p>"; echo "<hr color=red>"; #使用shell_exec() $result1=shell_exec("date...2009-06-30 15:50:00 · 85 阅读 · 0 评论 -
php file操作--删除空目录
<?php #删除空目录 function delDir($dir){ if($od=@opendir($dir)){ while(($file=readdir($od))!=false){ if(($file==".")||($file==".."))continue; ...2009-06-30 15:12:00 · 68 阅读 · 0 评论 -
php file操作--删除空目录
<?php #删除空目录 function delDir($dir){ if($od=@opendir($dir)){ while(($file=readdir($od))!=false){ if(($file==".")||($file==".."))continue; ...2009-06-30 15:12:00 · 70 阅读 · 0 评论 -
php filetype() 文件类型
在php中,文件操作中,filetype(string),结果有8中:block,char,dir,fifo,file,link,socket,unknown<?php #文件名称 echo basename("file/fileTest.php")."<hr color=red>"; #文件名称,不含后缀 echo basename("file...2009-06-29 21:17:00 · 173 阅读 · 0 评论 -
php filetype() 文件类型
在php中,文件操作中,filetype(string),结果有8中:block,char,dir,fifo,file,link,socket,unknown<?php #文件名称 echo basename("file/fileTest.php")."<hr color=red>"; #文件名称,不含后缀 echo basename("file...2009-06-29 21:17:00 · 355 阅读 · 0 评论