温馨提示,视频中挖了很多坑需要自己填
1.记得自己链接数据库,传入$link,使用完毕close
2.html中调用 js的editAdmin()记得这边传参数,内边接收。
3.其他页面接收记得看好是get,还是post过去的。
4.还有很多。。。忘了
1.记得自己链接数据库,传入$link,使用完毕close
2.html中调用 js的editAdmin()记得这边传参数,内边接收。
3.其他页面接收记得看好是get,还是post过去的。
4.还有很多。。。忘了
2016-08-11
为什么?
Warning: require_once(../include.php): failed to open stream: No such file or directory in F:\phpStudy\WWW\shopKenny\admin\getVerify.php
Fatal error: require_once(): Failed opening required '../include.php' (include_path='.;C:\php\pear') in F:\phpStudy\WWW\shopKenny\admin\getVerify.php
Warning: require_once(../include.php): failed to open stream: No such file or directory in F:\phpStudy\WWW\shopKenny\admin\getVerify.php
Fatal error: require_once(): Failed opening required '../include.php' (include_path='.;C:\php\pear') in F:\phpStudy\WWW\shopKenny\admin\getVerify.php
个人感觉这样在页头配置分页信息会造成代码冗余,于是我封装到了common.php中:
function getAllByPage($table,$pageSize=5){
$link=connect();
global $page;
global $totalPage;
$page=$_REQUEST['page']?(int)$_REQUEST['page']:1;
$sql="select * from ".$table."";
。。。。。。。。。。。。
}欢迎加我QQ一起交流:8927743063
function getAllByPage($table,$pageSize=5){
$link=connect();
global $page;
global $totalPage;
$page=$_REQUEST['page']?(int)$_REQUEST['page']:1;
$sql="select * from ".$table."";
。。。。。。。。。。。。
}欢迎加我QQ一起交流:8927743063
2016-08-10
个人感觉同一种分类不能出现两次,所以应该有一个判断的逻辑。
function addCate(){
$link=connect();
$arr=$_POST;
$sql="select cName from easyshop_cate where cName='{$arr['cName']}'";
$row=fetchOne($link,$sql);
if($arr['cName']==$row['cName']){
alertMes("请勿重复添加!","addCate.php");
}else{
function addCate(){
$link=connect();
$arr=$_POST;
$sql="select cName from easyshop_cate where cName='{$arr['cName']}'";
$row=fetchOne($link,$sql);
if($arr['cName']==$row['cName']){
alertMes("请勿重复添加!","addCate.php");
}else{
2016-08-10
个人感觉同一种分类不能出现两次,所以应该有一个判断的逻辑。
function addCate(){
$link=connect();
$arr=$_POST;
$sql="select cName from easyshop_cate where cName='{$arr['cName']}'";
$row=fetchOne($link,$sql);
if($arr['cName']==$row['cName']){
alertMes("请勿重复添加!","addCate.php");}else{
欢迎加qun:461327821一起交流
function addCate(){
$link=connect();
$arr=$_POST;
$sql="select cName from easyshop_cate where cName='{$arr['cName']}'";
$row=fetchOne($link,$sql);
if($arr['cName']==$row['cName']){
alertMes("请勿重复添加!","addCate.php");}else{
欢迎加qun:461327821一起交流
2016-08-10