A: 

Your problem is probably due to the fact that when you switch the content type to a Word document, the browser doesn't render it as HTML. My guess is that you need to add a newline to the Word document if you want a line break. How to insert this line break? I'm not sure, but you could always try:

echo "Aug\r\n01";

Where \r\n are the newline characters.

Eddie Ringle
Okay, I just tried this but it remains the same output in the Word file. I'll edit my original question to indicate what I've previously attempted.Thank you for your assistance though.
theotherlight
Sorry I couldn't help. Maybe you should try researching how a Word file works and how _your_ browser renders Word documents.
Eddie Ringle
For what it's worth, the Word file isn't being rendered in the browser. Switching the content-type forces the HTML file to be rendered in Microsoft Word itself (Open/Save As dialogs pops up), which leads me to believe it shouldn't have anything to do with the browser rendering?
theotherlight
Ah, I thought it was being loaded in the browser. You're right, it has nothing to do with how the browser handles it. I still recommend you read up on newlines in Word documents.
Eddie Ringle
A: 

How about, if you want to maintain a line-break, just echo "<p>Aug</p><p>01</p>"; it ain't pretty, but it should effect the line break you're looking for.

David Thomas