热门标签 | HotTags
当前位置:  开发笔记 > 编程语言 > 正文

mysqli连接数据库

<?phpheader(charsetUTF-8);$linkmysqli_connect(
header( "charset=UTF-8");

$link = mysqli_connect(
'localhost', /* The host to connect to 连接MySQL地址 */
'root', /* The user to connect as 连接MySQL用户名 */
'xuex', /* The password to use 连接MySQL密码 */
'ssm'); /* The default database to query 连接数据库名称*/

if(!$link){
printf( "Can't connect to Mysql ",mysqli_connect_error());
}
if ($result = mysqli_query($link, ' SELECT emp_id, gender FROM tbl_emp ORDER BY emp_name DESC LIMIT 5 ')) {
//print("Very large cities are: ");
/* Fetch the results of the query 返回查询的结果 */
while( $row = mysqli_fetch_assoc($result) ){
printf( "%s (%s) ", $row[ 'emp_id'], $row[ 'gender']);
}
/* Destroy the result set and free the memory used for it 结束查询释放内存 */
mysqli_free_result($result);
}
/* Close the connection 关闭连接*/
mysqli_close($link);

? >

推荐阅读
author-avatar
那永A_334
这个家伙很懒,什么也没留下!
PHP1.CN | 中国最专业的PHP中文社区 | DevBox开发工具箱 | json解析格式化 |PHP资讯 | PHP教程 | 数据库技术 | 服务器技术 | 前端开发技术 | PHP框架 | 开发工具 | 在线工具
Copyright © 1998 - 2020 PHP1.CN. All Rights Reserved | 京公网安备 11010802041100号 | 京ICP备19059560号-4 | PHP1.CN 第一PHP社区 版权所有