MyBB.de Forum
Eingeloggt? - Druckversion

+- MyBB.de Forum (https://www.mybb.de/forum)
+-- Forum: Archiv (https://www.mybb.de/forum/forum-57.html)
+--- Forum: MyBB 1.2.x und älter (https://www.mybb.de/forum/forum-27.html)
+---- Forum: Allgemeiner Support (https://www.mybb.de/forum/forum-36.html)
+---- Thema: Eingeloggt? (/thread-9477.html)



Eingeloggt? - gnol - 12.05.2008

Wie überprüft man, ob jemand eingeloggt ist oder nicht?


RE: Eingeloggt? - Michael - 12.05.2008

Innerhalb des Forums ist es über eine einfache Abfrage möglich.
PHP-Code:
if($mybb->user['uid'] != "0") {
    
//Benutzer ist angemeldet

Es gibt auch Möglichkeiten für externe Seiten. Siehe dazu:
https://www.mybb.de/forum/showthread.php?tid=2923
https://www.mybb.de/forum/showthread.php?tid=5621


RE: Eingeloggt? - gnol - 13.05.2008

Und wie fügt man dann eine LoginBox ein?


RE: Eingeloggt? - StefanT - 13.05.2008

Du schaust, ob der Benutzer Gast ist und blendest dann für ihn das Formular ein.