Quote:
11-06-02 at 04:53 PM lemarsu said this in Post #1050
NTLDR,
Thanks
I updated online.php
replaced
PHP Code:
case 'gallery':
$userinfo[where] = "Viewing Picture <a href='gallery.php?s=$session[sessionhash]'>Gallery</a>";
break;
by
PHP Code:
case 'gallery':
$userinfo[where] = "Viewing Picture <a href='gallery.php?s=$session[sessionhash]'>Gallery</a>";
break;
case 'portal':
$userinfo[where] = "Viewing <a href='vbindex.php?s=$session[sessionhash]'>The Portal</a>";
break;
and replaced
PHP Code:
case '/robots.txt':
$userinfo[activity] = 'spider';
break;
by
PHP Code:
case '/robots.txt':
$userinfo[activity] = 'spider';
break;
case 'vbindex.php':
$userinfo[activity] = 'portal';
break;
all seem to work.
|
I want to do the same thing, but I am not sure I understand this example. I want my vbindex.php to come up as "MyCrossTalk".
Where do these values plug in?
Thanks.