PHP第07讲YSQL数据库应用.pptVIP

  • 0
  • 0
  • 约2.41千字
  • 约 13页
  • 2017-06-18 发布于贵州
  • 举报
PHP第07讲YSQL数据库应用

PHPMYSQL操作函数 主讲人:邓炜 Q Q:254738802 Email:dengwei1999@163.com 网站: 大纲 主要内容: 理解数据库操作流程; 掌握基本SQL语句; 掌握数据库基本操作; 学会使用PHPMyAdmin工具; 第一节 连接数据 (1)连接服务器 格式: mysql_connect ( [string server [, string username [, string password [, bool new_link [, int client_flags]]]]]) (2)选择数据库 格式: bool mysql_select_db ( string database_name [, resource link_identifier]) ?php $con = mysql_connect(localhost, root, ‘123456); mysql_select_db( ‘user, $con ); ? 第二节 创建查询 mysql_query()函数来执行SQL语句 ?php $conn=mysql_connect(localhost,root,123456) or die(数据库打开失败!); if (mysql_select_db(user,$conn))

文档评论(0)

1亿VIP精品文档

相关文档