这篇文章主要介绍了Joomla简单判断用户是否登录的方法,涉及Joomla基于服务器端变量结合Joomla文件进行判断与跳转的相关技巧,需要的朋友可以参考下
<?php
if (isset($_SESSION['auth']["username"]))
{ echo "Welcome <a href='index.php?option=com_user&view=user&task=edit'>" . $_SESSION['auth']["username"] . "</a>!"; }
else
{ echo "<a href='index.php?option=com_user&view=login'>Log in</a>"; }
?>
希望本文所述对大家基于joomla程序设计有所帮助。