View Single Post
  #18  
Old 07-02-2014, 04:46 PM
Kyttias's Avatar
Kyttias Kyttias is offline
Premium Member
 
Join Date: Jan 2014
Posts: 857
Gender: Unknown/Other
Credits: 90,806
Kyttias is on a distinguished road
Default

Equally random, yup.

As for an 'extra message'? Uhmm... well... there's this, for example:

Code:
$online = $mysidia->db->select("online", array(), "username != 'Visitor'")->rowCount();
$offline = $mysidia->db->select("online", array(), "username = 'Visitor'")->rowCount();
$this->assign("population","{$online} Users Online + {$offline} Guests");
If you call just {$online} or {$offline}, you receive just a number. But if you call {$population} it'll render something like "12 Users Online + 17 Guests" wherever you choose to place it.

I'm super not sure if that's helpful. =/ I hope so.
__________________
Please do not contact me directly outside of Mysidia.
I also cannot troubleshoot code more than two years old - I legit don't remember it.
Reply With Quote