[Weberp-svn] SF.net SVN: weberp:[7362] trunk/DailySalesInquiry.php
Brought to you by:
sotandeka,
tim_schofield
From: <tim...@us...> - 2011-07-29 21:39:06
|
Revision: 7362 http://weberp.svn.sourceforge.net/weberp/?rev=7362&view=rev Author: tim_schofield Date: 2011-07-29 21:39:00 +0000 (Fri, 29 Jul 2011) Log Message: ----------- XHTML corrections to code Modified Paths: -------------- trunk/DailySalesInquiry.php Modified: trunk/DailySalesInquiry.php =================================================================== --- trunk/DailySalesInquiry.php 2011-07-29 21:38:49 UTC (rev 7361) +++ trunk/DailySalesInquiry.php 2011-07-29 21:39:00 UTC (rev 7362) @@ -14,7 +14,7 @@ echo '<form action="' . $_SERVER['PHP_SELF'] . '" method="post">'; echo '<input type="hidden" name="FormID" value="' . $_SESSION['FormID'] . '" />'; -echo '<table cellpadding=2 class="selection"><tr>'; +echo '<table cellpadding="2" class="selection"><tr>'; echo '<td>' . _('Month to Show') . ':</td><td><select tabindex=1 name="MonthToShow">'; @@ -173,9 +173,9 @@ $AverageDailySales = 0; } -echo '<th colspan=7>' . _('Total Sales for month') . ': ' . number_format($CumulativeTotalSales,0) . ' ' . _('GP%') . ': ' . number_format($AverageGPPercent,1) . '% ' . _('Avg Daily Sales') . ': ' . number_format($AverageDailySales,0) . '</th></tr>'; +echo '<th colspan="7">' . _('Total Sales for month') . ': ' . number_format($CumulativeTotalSales,0) . ' ' . _('GP%') . ': ' . number_format($AverageGPPercent,1) . '% ' . _('Avg Daily Sales') . ': ' . number_format($AverageDailySales,0) . '</th></tr>'; echo '</table>'; include('includes/footer.inc'); -?> +?> \ No newline at end of file This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |