travelkind Posted June 21, 2010 Share Posted June 21, 2010 This is probably a simple question, but how can I modify my code to insert additional spacing in between my column headings? Thanks for your input. echo " ". '<br>'; echo "Customer Number:" . '<br>'; echo "Customer Name:" . '<br>'; echo "Customer Address:" . '<br>'; echo " ". '<br>'; echo " ". '<br>'; echo "Month" . " " . "Gallons" . " " . "Sales" . " " . "COGS" . " " . "Gross Profit" . " " . "Profit Per Gallon" . '<br>'; echo " ". '<br>'; Link to comment https://forums.phpfreaks.com/topic/205473-spacing-between-column-headings/ Share on other sites More sharing options...
kenrbnsn Posted June 21, 2010 Share Posted June 21, 2010 This is an HTML/CSS question. You can do it with tables (old way) or styled CSS (new way). Ken Link to comment https://forums.phpfreaks.com/topic/205473-spacing-between-column-headings/#findComment-1075254 Share on other sites More sharing options...
travelkind Posted June 21, 2010 Author Share Posted June 21, 2010 Okay I will check into CSS. Thanks Ken. Link to comment https://forums.phpfreaks.com/topic/205473-spacing-between-column-headings/#findComment-1075257 Share on other sites More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.