I am newbie to PHP I have written the following program:
$address=array('[email protected]','[email protected]','[email protected]');
foreach($address as $value)
{
echo "processing $value\n";
}
If you see I have \n in the echo statement but I am not getting the output on new line.
How can I get each output on a new line?