Log in

View Full Version : while loop in a function


harmor19
11-13-2005, 06:52 AM
I am doing the hook system in my own scripts but I have a small problem.
It only returns the first hook that matches $hook_name.

How do I have it return all the rows where the hook_names match?

function fetch_hook($hook_name)
{
$gethook = mysql_query("SELECT * FROM hooks WHERE hook_name = '$hook_name' ");

while($hook = mysql_fetch_array($gethook))
{
return $hook['phpcode'];
}

Marco van Herwaarden
11-13-2005, 06:03 PM
A 'return' statement leaves the function and returns control to the calling script.

harmor19
11-13-2005, 06:48 PM
So I'll need to check if I got every field where hook_name = $hook_name?

I don't know how to do this offhand, hopefully I'll find it easily.

Marco van Herwaarden
11-13-2005, 07:52 PM
No, you should not return there. Instead you would probably want to evaluate the code you have just read from the database.

harmor19
11-13-2005, 08:12 PM
It occured to me that I was using return in the while loop so I took it out of the while loop and now it works.
That's another lesson learned.

Thanks for the help though.

Marco van Herwaarden
11-13-2005, 08:20 PM
Well that was my first answer. ;)

harmor19
11-13-2005, 08:21 PM
Well that was my first answer. ;)
I didn't interpret it like that.

The Geek
11-13-2005, 08:45 PM
Think you want something like this:


function fetch_hook($hook_name)
{
$gethook = mysql_query("SELECT * FROM hooks WHERE hook_name = '$hook_name' ");
$return = array();
while($hook = mysql_fetch_array($gethook))
{
$return[]= $hook['phpcode'];
}
return $return;
}


for a more vb3.5 approach (with cleansing, etc...) try this:



function fetch_hook($hook_name)
{
global $db;
$hooks = $db->query_read("SELECT phpcode FROM hooks WHERE hook_name = '" . $db->escape_string($hook_name) . "' ");
$return = array();
while($hook = $db->fetch_array($hooks))
{
$return[]= $hook['phpcode'];
}
$db->free_result($hooks);
return $return;
}


Havent tested either - but they should work fine for you.

nJoy