电脑爱好者,提供IT资讯信息及各类编程知识文章介绍,欢迎大家来本站学习电脑知识。 最近更新 | 联系我们 RSS订阅本站最新文章
电脑爱好者
站内搜索: 
当前位置:首页>> PHP>>mysqli使用方法及详细代码|php利用mysqli连接数据库:

mysqli使用方法及详细代码|php利用mysqli连接数据库

来源:qianling3439 | 2009-8-13 | (有6054人读过)

<?php
   
    /* Connect to a MySQL server  连接数据库服务器 */
    $link = mysqli_connect(
                'localhost',  /* The host to connect to 连接MySQL地址 */
                'user',      /* The user to connect as 连接MySQL用户名 */
                'password',  /* The password to use 连接MySQL密码 */
                'world');    /* The default database to query 连接数据库名称*/
   
    if (!$link) {
       printf("Can't connect to MySQL Server. Errorcode: %s ", mysqli_connect_error());
       exit;
    }
   
    /* Send a query to the server 向服务器发送查询请求*/
    if ($result = mysqli_query($link, 'SELECT Name, Population FROM City ORDER BY Population DESC LIMIT 5')) {
   
        print("Very large cities are: ");
   
        /* Fetch the results of the query 返回查询的结果 */
        while( $row = mysqli_fetch_assoc($result) ){
            printf("%s (%s) ", $row['Name'], $row['Population']);
        }
   
        /* Destroy the result set and free the memory used for it 结束查询释放内存 */
        mysqli_free_result($result);
    }
   
    /* Close the connection 关闭连接*/
    mysqli_close($link);
    ?>

PHP热门文章排行
网站赞助商
购买此位置

 

关于我们 | 网站地图 | 文档一览 | 友情链接| 联系我们

Copyright © 2003-2024 电脑爱好者 版权所有 备案号:鲁ICP备09059398号