I am not sure how to make a tab in PHP. I assumed it was the "\t" code but it is not working for me. I want to all the print lines after the shipping to, to be tabbed to the right. How can I do this? This is my code:

Code:
	print ("Shipping To: $lastName, $firstName <br>");
	print ("$address <br>");
	print ("$city, $province <br>");
	print ("$postalCode <br>");
I tried to add the "\t" in the print statements but its not working.