Hello, This is a reply to an e-mail that you wrote on Fri, 25 Jul 2003 at 23:51, lines prefixed by '>' were originally written by you.
> <[EMAIL PROTECTED]> > Jack Lee: > > //I have an array a[] like this: > > <?php > > $a[]=0; > > //How to define and use it in a function like this? > > function myfunc(something) > > { > > echo $a[0]; //got error here!!!! Notice: Undefined variable: > > } > > //Thanks for any help.!!! > global $a; .. or echo $GLOBALS['a'][0]; David. -- phpmachine :: The quick and easy to use service providing you with professionally developed PHP scripts :: http://www.phpmachine.com/ Professional Web Development by David Nicholson http://www.djnicholson.com/ QuizSender.com - How well do your friends actually know you? http://www.quizsender.com/ (developed entirely in PHP) -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php