NLT Posted August 7, 2011 Share Posted August 7, 2011 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 More sharing options...
AyKay47 Posted August 7, 2011 Share Posted August 7, 2011 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 More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.