已采纳回答 / for_now
首先,如果你是复制过来的,那么session拼写错误就会导致编译错误。第二,在include.php中加入session.start的之前,在image.func.php中已经包含了session.start,在这种情况下,即使你去掉include中的session,也能让session开启。
2017-04-16
已采纳回答 / 无尘扫地僧
$where = $where == null ? null : " where ". $where;//" where处必须要有空格:" where ""$str="";//必须在循环外
2017-04-07
已采纳回答 / 1274765441
首先定义常量ROOT 代表你的当前文件夹 接下是set_include_path就是设置php的包含文件路径,相当是操作系统的环境变量,关于set_include_path的问题,在win下,当你要include多个路径的话,你要用";"隔开,但在linux下就使用":"隔开的。PATH_SEPARATOR 这个的意思就是一个常量 表示 ; 冒号
2017-04-04
已采纳回答 / 星屑
DROP TABLE IF EXISTS `imooc_user`;CREATE TABLE `imooc_user` ( `id` int(10) unsigned NOT NULL AUTO_INCREMENT, `username` varchar(20) NOT NULL, `password` char(32) NOT NULL, `sex` enum('男','女','保密') NOT NULL DEFAULT '保密', `email` varchar(50) NOT NULL, ...
2017-03-17
已采纳回答 / 奔放的小心
require_once "../include.php";//链接数据库function connect(){ $link = mysqli_connect(DB_HOST, DB_PWD) or die("数据库打开失败error:" . mysqli_connect_errno()); mysqli_set_charset($link, DB_CHARSET); mysqli_select_db($link, DB_DBNAME); return $link;}//数据插入f...
2017-03-06
已采纳回答 / 慕粉1559578207
就把image.func.php的代码最后调用verifyImage删掉,然后再在getverify.php里写上verifyImage(3,4,20,5);然后我不用include.php就可以了,但是我跳转方面还是有问题。。。。。
2017-02-15