php实现购物车功能(下)

发布时间:2022-04-30 发布网站:脚本宝典
脚本宝典收集整理的这篇文章主要介绍了php实现购物车功能(下)脚本宝典觉得挺不错的,现在分享给大家,也给大家做个参考。

接着上篇继续学习:

《phP实购物车的功能(上)》

一个管理界面

php实现购物车功能(下)

登录界面

代码实现: 7.1 admin.PHP

<PRe class="brush:PHp;"> <>PHP

/**

  • @author swITch
  • @copyright 2015
  • 主管理菜单
    */
    //require_once语句和require语句完全相同,唯一区别是PHP会检查该文件是否已经被包含过,如果是则不会再次包含。
    require_once('Book_sc_fns.PHP');

session_start();

if((@$_POST['username']) && (@$_POST['passwd'])) //尝试登陆
{
$username = $_POST['username'];
$passwd = $_POST['passwd'];

if(login($username,$passwd))
{
$_SESSION['admin_user'] = $username;
}
else
{
do_htML_header("Problem:");
echo "

You Could not be LOGged in.

You must be logged in to view this page.

";
do_html_URL('login.PHP','Login');
do_html_footer();
exit;
}
}

do_html_header("Administration");

if(check_admin_user())
{
display_admin_menu();
}
else
{
echo "

You are not authorized to enter the administration area.

";
do_html_URL('login.PHP','Login');
}
do_html_footer();
?>

脚本宝典总结

以上是脚本宝典为你收集整理的php实现购物车功能(下)全部内容,希望文章能够帮你解决php实现购物车功能(下)所遇到的问题。

如果觉得脚本宝典网站内容还不错,欢迎将脚本宝典推荐好友。

本图文内容来源于网友网络收集整理提供,作为学习参考使用,版权属于原作者。
如您有任何意见或建议可联系处理。小编QQ:384754419,请注明来意。