摘要:
<?php $link=mysqli_connect('localhost','root',”); mysqli_select_db('abc',$link); $sql = “select * from book”; $result = mysqli_query($sql); while($row 阅读全文
该文被密码保护。 阅读全文
摘要:
一 lib(library常用代码库)文件夹下的代码 4个init.php初始,config.php配置,func.php函数,mysql.php数据库; init.php代码:<?php header('Content-type:text/html;charset=utf8');//header 阅读全文
摘要:
<!doctype html> <html lang="en"> <head> <meta charset="UTF-8"> <title>Document</title> <link rel="stylesheet" type="text/css" href=""> <style> </style 阅读全文
摘要:
Apache2.4 一个或多个本地网站 流程 打开Apache的httpd.conf配置文件[apache_dir/conf/httpd.conf] 引用子配置文件httpd_vhosts.conf(将原本第二行有的注释”#”去掉即可) # Virtual hosts Include conf/ex 阅读全文
摘要:
关于如何查看MySQL版本: 方法一: 进入mysql cmd, >status; 1MySQL语句得到mysql安装路径: select @@basedir as basePath from dual ; 2将库导出到mysql安装目录下: C:\Program Files\MySQL\MySQL 阅读全文