Wait until after the for loop has completed.

for ($i=0; $i< $num_results; $i++)
{
$variable[$i];
}
global $variable;

> I need to call a generated variable global w/i a function but the
> following doesn't work:
> 
> for ($i=0; $i < $num_results; $i++)
> {
> global $variable[$i];
> }
> 
> I am trying to pass a similarly created form element to a function.  I
> have two questions.  Why doesn't this work? And, what else can I do to
> get the same results.
> 
> Thanks,
> 
> rodney
> 


-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]
To contact the list administrators, e-mail: [EMAIL PROTECTED]

Reply via email to