Jump to content

Core


NLT

Recommended Posts

I need to get some columns out of server_status, but I need to know how I can do it with a code like this:

class Core
{
    {     function server_status()
           mysql_query("SELECT * FROM server_status") // * being value
     }
}

 

So I could use something like

$core = new Core();
echo $server_status['online_users'];
echo $server_status['server_name'];

 

Link to comment
https://forums.phpfreaks.com/topic/244146-core/
Share on other sites

assuming that online_users and server_name are the columns that you need to extract values for..very basic here,

 

class Core
{
         public function server_status($col_name){
              $query = mysql_query("SELECT * FROM server_status") // * being value
              $row = mysql_fetch_assoc($query,MYSQL_ASSOC);
              echo $row[$col_name];
         }
}

 

 

$core = new Core();
$core -> $server_status("online_users");
$core -> $server_status("server_name");

 

 

Link to comment
https://forums.phpfreaks.com/topic/244146-core/#findComment-1253846
Share on other sites

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.