I looked in the manual under echo, and followed the directions but still doesnt work the way i want. This is my code:
i have an array of customers in $customer_list(the array works fine)
$count = 0;
{
while ..................
$customer_list[$count] = "$first_name $last_name
$count++;
}
Now i want to print the array, but skip a line after each one:
for ($i = 0; $i <= $count; $i++) {
print "$customer_list[$i]\n";
}
I put the \n in, but each customer listing doesnt print on a new line?? They are just all right after each other.
Thanks for any help