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
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

Link to comment
Share on other sites

This thread is more than a year old. Please don't revive it unless you have something important to add.

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Restore formatting

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • 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.