From: <ex...@us...> - 2014-10-22 09:07:14
|
Revision: 6929 http://sourceforge.net/p/web-erp/reponame/6929 Author: exsonqu Date: 2014-10-22 09:07:03 +0000 (Wed, 22 Oct 2014) Log Message: ----------- 22/10/14 Exson: Add Order by in SalesTypes.php. Modified Paths: -------------- trunk/SalesTypes.php Modified: trunk/SalesTypes.php =================================================================== --- trunk/SalesTypes.php 2014-10-22 01:35:44 UTC (rev 6928) +++ trunk/SalesTypes.php 2014-10-22 09:07:03 UTC (rev 6929) @@ -181,7 +181,7 @@ links to delete or edit each. These will call the same page again and allow update/input or deletion of the records*/ - $sql = "SELECT * FROM salestypes"; + $sql = "SELECT * FROM salestypes ORDER BY typeabbrev"; $result = DB_query($sql,$db); echo '<table class="selection">'; @@ -279,4 +279,4 @@ } // end if user wish to delete include('includes/footer.inc'); -?> \ No newline at end of file +?> |