Forum: Advanced PHP Programming
10-04-2008, 01:03 PM
|
|
Replies: 3
Views: 1,663
And new features here:
//print_r(...
And new features here:
//print_r( $address_book_csv );
$i = 0;
while($i < count($address_book_csv))
{
echo($address_book_csv[$i]['first'] . ' ');
...
|