tacanty2100 Posted May 9, 2011 Share Posted May 9, 2011 Ok, So I have a table with customers... But after you add one. The <select> that shows up is unorganized... $con = mysql_connect("localhost","techportal","tech2196"); if (!$con) { die('Could not connect: ' . mysql_error()); } mysql_select_db("innerlink_customers", $con); $result = mysql_query("SELECT cust_id, customer FROM customerinfo"); while($row = mysql_fetch_assoc($result)){ echo "<option value='" . $row['cust_id'] ."'>" . $row['customer'] . "</option>"; } Quote Link to comment https://forums.phpfreaks.com/topic/235955-php-sorting-mysql/ Share on other sites More sharing options...
wildteen88 Posted May 9, 2011 Share Posted May 9, 2011 What do want to the results to be ordered by? The cust_id field in numerical order SELECT cust_id, customer FROM customerinfo ORDER BY cust_id ASC or the customers field in alphabetical order? SELECT cust_id, customer FROM customerinfo ORDER BY customer ASC if you don't specify an order it will just return the results in the order they where added into the database. Quote Link to comment https://forums.phpfreaks.com/topic/235955-php-sorting-mysql/#findComment-1212979 Share on other sites More sharing options...
tacanty2100 Posted May 9, 2011 Author Share Posted May 9, 2011 Haha. Well Thank you wildteen88 for that... Been working on this constantly and brain is fried. Quote Link to comment https://forums.phpfreaks.com/topic/235955-php-sorting-mysql/#findComment-1212983 Share on other sites More sharing options...
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.