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

2

Re: Integrated PunBB into php

$forum_user is the new reference, I believe.

Re: Integrated PunBB into php

MattF wrote:

$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'];

Re: Integrated PunBB into php

Thank !