Topic: Integrated PunBB into php
Hello,
In my old website (Punbb 1.2) i used :
$username=$pun_user['username'];
$email=$pun_user['email'];
$dernierevisite=$pun_user['last_visit'];
But for Punbb 1.3 what is equivalent ?
thank
You are not logged in. Please login or register.
PunBB Forums → PunBB 1.3 discussion → Integrated PunBB into php
Hello,
In my old website (Punbb 1.2) i used :
$username=$pun_user['username'];
$email=$pun_user['email'];
$dernierevisite=$pun_user['last_visit'];
But for Punbb 1.3 what is equivalent ?
thank
$forum_user is the new reference, I believe.
Yep.
Resulting code would be:
$username=$forum_user['username'];
$email=$forum_user['email'];
$dernierevisite=$forum_user['last_visit'];
Thank !
PunBB Forums → PunBB 1.3 discussion → Integrated PunBB into php
Powered by PunBB, supported by Informer Technologies, Inc.