Subj : Re: Mysticphp Disply last callers in a web page
To   : Richard Fairman
From : Todd Yatzook
Date : Tue Oct 15 2019 02:45 pm

On 15 Oct 2019, Richard Fairman said the following...

RF> I've got round my lack of program skills by pulling in the callers.dat
RF> file for display in a web page Not very pretty but readable Still hoping
RF> for a way to format the array created by mysticphp

Hey Richard. Netsurge gave an example in response to your question a few days
ago. Here's his example:

            $lastcalls=$mystic->lastcallers(10, true);
            $lcr = array_reverse($lastcalls, true);
            foreach ($lcr as $lc){
                 $lc['city']=$mystic->decode($lc['city']);
                 echo "<tr>";
                 echo "<td width='25%'>".$lc['user']."</td>";
                 echo "<td >".$lc['city']."</td>";
                 $ldate=date("d/m/y",$lc['date']);
                 echo "<td align='right'>".$ldate."</td>";
                 echo "</tr>";
            ;

--- Mystic BBS v1.12 A43 2019/03/02 (Linux/64)
* Origin: http://www.throwbackbbs.com -\- meriden, ct -\- (1:142/799)