Jump to content

function get info help


whiteboikyle

Recommended Posts

Okay well i am going to do a function that looks in the database.. like so

 

function function_userlevel($userlevel){
global $config;
$result = $config->query("SELECT * FROM userlevel where userlevel = '$userlevel'");

}

 

Now see how i did select * from userlevel.. Well the query will come up with with somewhere between 5-10 results..

 

so how do i do a return $results.. but i need all the results..

 

so when i use this function it will list all of them.

Link to comment
https://forums.phpfreaks.com/topic/112852-function-get-info-help/
Share on other sites

Maybe:

function function_userlevel($userlevel){
global $config;
return $result = $config->query("SELECT * FROM userlevel where userlevel = '$userlevel'");
}

Then loop through the array.

 

how come dont user global? how else would i get data from my config file.. lol

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.