Philip J. Newman wrote:

> I have to exchage over 304 different names, codes, and dates ...
> 



Instead of hundreds of discrete variables, would you not be
better served by dividing them up into arrays of some sort?

instead of $name1, $name2, etc

$name[1]
$name[2]

or
$name["first"]
$name["last"]

and so on...

I'd think memory usage would be about the same, but if there was some 
limit on the number of discrete simultaneous variable names, this should 
get around that.

Michael Kimsal
http://www.tapinternet.com/php/
PHP Training Courses
734-480-9961





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