打开APP
userphoto
未登录

开通VIP,畅享免费电子书等14项超值服

开通VIP
在php文件中链接使用数据库MySQL
原创 2016年08月09日 16:29:47

注:本文为作者原创,其中知识内容出自闪电终结者的视频课程

<?php      // 解决中文乱码问题    header("Content-Type: text/html;charset=utf-8");     // 通过Php文件来链接到数据库,IP地址,用户名,密码    $sql = mysql_connect("127.0.0.1", "root", "");     // 对变量进行操作,得到一张大表    $result = mysql_query("SELECT * FROM order_test . dish", $sql);    // 保存成数组格式,在使用,每次只读取1行    $data_array = mysql_fetch_array($result);    for($index = 0; $index < count($data_array); $index++) {       echo $data_array[$index]."\n";    }    // // 用html格式打印数组    // var_dump($data_array);    // 读取行数    // $number = mysql_num_rows($result);    // for($indexOut = 0; $indexOut < $number; $indexOut++) {    //     $data_array = mysql_fetch_array($result);    //     for($index = 0; $index < count($data_array); $index++) {    //         echo $data_array[$index]."\n";    //     }    //     echo "\n";    // }
  • 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
 cocos -> APACHE服务器下的php脚本 -> 数据库 -> cocos
本站仅提供存储服务,所有内容均由用户发布,如发现有害或侵权内容,请点击举报
打开APP,阅读全文并永久保存 查看更多类似文章
猜你喜欢
类似文章
【热】打开小程序,算一算2024你的财运
php面试题目
面试题1
PHP实现一次性多张图片上传功能
php 读取excel中的内容到mysql 数据库
PHP将EXCEL导入MYSQL的具体方法介绍
PHP 从数据库中取出数据并存为Json数据
更多类似文章 >>
生活服务
热点新闻
分享 收藏 导长图 关注 下载文章
绑定账号成功
后续可登录账号畅享VIP特权!
如果VIP功能使用有故障,
可点击这里联系客服!

联系客服