01-27-2008, 01:40 AM
|
#3 (permalink)
|
|
The Frequenter
Join Date: Dec 2007
Location: Bucharest, Romania
Posts: 438
Thanks: 3
|
PHP Code:
while($i <= (count($address_book_csv) - 1))
could be rewritten as:
PHP Code:
while($i < count($address_book_csv))
You can show what ever you want, that's why I chose to return an array of values 
PS: the post editor has some serious problems when replying.
__________________
I have optimistic thoughts, even though sometimes (if not always) life's a bitch.
|
|
|
|