获得受影响的行数 1.计算返回的行数 <?php $dsn="mysql:host=localhost;dbname=produce"; $user='root'; $pwd=''; $array=array("orange","pear","banana");   &n
原创 2010-11-08 11:33:22
402阅读
header.php comm.php select.php update.php insert.php delete.php 字符集:
原创 2022-08-29 16:10:05
87阅读
查询数据插入数据 ...
转载 2018-08-23 15:32:00
114阅读
2评论
<?php     require_once 'PageClass.php';     class SqlHlper{                 private $conn ;  &nb
原创 2012-07-11 01:04:01
438阅读
1)连接mysql<?php  $con = mysql_connect("localhost","root","12345");  if(!$con){    die('Could not connect: ' . mysql_error());  }  mysql_close($con);?>2)php mysql创建数
原创 2014-11-25 01:58:14
381阅读
1)连接mysql<?php  $con = mysql_connect("localhost","root","12345");  if(!$con){    die('Could not connect: ' . mysql_error());  }  mysql_close($con);?>2)php mysql创建数据
原创 2014-11-25 02:04:00
400阅读
<?    ?><><><="GENERATOR" Content="Microsoft Visual Studio 6.0"><="text/css"><!--input { font-size:9pt;}A:link {text-decoratio
原创 2022-11-02 15:46:29
74阅读
第十章<?php // login.php$db_hostname = 'localhost';$db_database = 'publications';$db_username = 'username';$db_password = 'password'
转载 2013-02-12 22:36:00
93阅读
2评论
<?php$conn=mysql_connect("localhost","root","");$result2=mysql_db_query("hello_world", "insert into hello_table values ('add',8)",$conn);$result=mysql_db_query("hello_world", "select * from hello_t
原创 2015-04-28 14:18:08
509阅读
mysqli提供了面向对象和面向过程两种方式来与数据库交互,分别看一下这两种方式。1.面向对象在面向对象的方式中,mysqli被封装成一个类,它的构造方法如下:__construct([string$host[,string$username[,string$passwd[,string$dbname[,int$port[,...
原创 2023-03-01 10:00:52
91阅读
目录简介使用Redis有哪些好处?redis相比memcached有哪些优势?redis常见性能问题和解决方案:MySQL里有2000w数据,redis中只存20w的数据,如何保证redis中的数据都是热点数据Memcache与Redis的区别都有哪些?Redis 常见的性能问题都有哪些?如何解决?redis 最适合的场景支持的数据类型(5大数据类型)redis的安装和使用linux下安装启动服务
PHP数据库1、PHP MySQL 简介说明:MySQL 是最流行的开源数据库服务器;(1)、什么是 MySQL?MySQL 是一种数据库数据库定义录(行);(3)、查询:
原创 2023-08-22 10:09:33
62阅读
PHP数据库MYSQL操作基础1 数据库要求是UTF8格式,这样方便与汉字存取。2 创建数据表CREATE TABLE user_info(user_id varchar(15),user_name varchar(15),user_age int)3 数据库连接connection.php 代码如...
原创 2021-08-04 17:11:57
368阅读
MySQL API已经基本废止,MySQLi很多缺陷:不支持事务机制;仅支持MySQL,不能使用其它数据库。不安全,
原创 2022-07-09 00:04:04
253阅读
一:术语解释:What is an Extension?API和扩展不能理解为一个东西,因为扩展不一定暴露一个api给用户The PDO MySQL driver extension, for example, does not expose an API to the PHP programmer...
转载 2015-12-28 15:46:00
120阅读
2评论
简单的PHP操作数据库步骤: 1.连接数据库 $con = mysql_connect('ip','username','password'); 2.选择数据库 mysql_select_db(database,$con);//这里也可以不要$con参数 3.执行语句,得到返回结果 ...
PHP
原创 2021-07-23 17:52:17
427阅读
1.MMysql.class.php 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 <?php $mysql = new MMysql($configArr); //
转载 2018-01-10 17:59:00
142阅读
2评论
1.连接MongoDB数据库(在已安装php mongodb扩展的前提下) 2.简单统计 原文地址:https://segmentfault.com/a/1190000016113918
转载 2018-11-17 17:23:00
125阅读
2评论
ORM----Oriented Relationship Mapper,即用面向对象的方式来操作数据库。归根结底,还是对于SQL语句的封装。首先,我们的数据库有如下一张表:我们希望能够对这张表,利用setUserid("11111"),即可以设置userid;getUserid()既可以获得对象的u...
原创 2023-02-01 09:59:27
47阅读
PHP操作数据库
转载 2021-07-28 22:18:00
144阅读
2评论
  • 1
  • 2
  • 3
  • 4
  • 5