当我尝试在客户登录时显示一组不同的菜单时出现错误,当有人登录时,页脚只是从底部跳到顶部。当我删除此自定义菜单时,网站很好。有人可以帮忙吗?
谢谢你。
我用于菜单开关的代码是
<div class="login">
<?php if ($regid=='') { ?>
<a href="registration" class="login_style"> Register </a> |
<a href="login" class="login_style"> Login </a></div>
<?php }?>
<?php if ($regid!='') { ?>
<div class="login">
<a href="my_order" class="login_style"> My Orders </a> |
<a href="view_profile" class="login_style"> View Profile </a> |
<a href="edit_profile" class="login_style"> Edit Profile </a> |
<a href="changepass" class="login_style"> Change Password </a> |
<a href="signout" class="login_style"> Signout </a>
</div>
<?php }?>