junk4u Posted October 11, 2011 Share Posted October 11, 2011 Okay, Sorry about the last post didn't see how to close the or delete the post. My bad. What can I add to get my drop down to be in alphabetical order? I've tried adding a clause to the sql statement, but I guess Im adding it in the wrong place as I keep getting errors or nothing changes. <?php if(!isset($_SESSION)) session_start(); $server = 'localhost'; $user = 'root'; $pass = ''; $dbase = 'competitors'; $table = 'zip_code'; $ar_cols = array('state_prefix', 'city', 'zip_code', 'locationtext'); $preid = 'slo_'; $col = $ar_cols[0]; $re_html = ''; if(isset($_POST['col']) && isset($_POST['wval'])) { $col = trim(strip_tags($_POST['col'])); $wval = "'".trim(strip_tags($_POST['wval']))."'"; } $key = array_search($col, $ar_cols); $wcol = $key===0 ? $col : $ar_cols[$key-1]; $_SESSION['ar_cols'][$wcol] = isset($wval) ? $wval : $wcol; $last_key = count($ar_cols)-1; $next_col = $key<$last_key ? $ar_cols[$key+1] : ''; $conn = new mysqli($server, $user, $pass, $dbase); if (mysqli_connect_errno()) { exit('Connect failed: '. mysqli_connect_error()); } for($i=1; $i<=$key; $i++) { $ar_where[] = '`'.$ar_cols[$i-1].'`='.$_SESSION['ar_cols'][$ar_cols[$i-1]]; } $where = isset($ar_where) ? ' WHERE '. implode($ar_where, ' AND ') : ''; $sql = "SELECT DISTINCT `$col` FROM `$table`".$where; $result = $conn->query($sql); if ($result->num_rows > 0) { $onchg = $next_col!==null ? " onchange=\"ajaxReq('$next_col', this.value);\"" : ''; if($col!=$ar_cols[$last_key]) $re_html = $col. ': <select name="'. $col. '"'. $onchg. '><option>- - -</option>'; while($row = $result->fetch_assoc()) { if($col==$ar_cols[$last_key]) $re_html .= '<br/>'. $row[$col]; else $re_html .= '<option value="'. $row[$col]. '">'. $row[$col]. '</option>'; } if($col!=$ar_cols[$last_key]) $re_html .= '</select> '; } else { $re_html = '0 results'; } $conn->close(); if($col==$ar_cols[0]) { for($i=1; $i<count($ar_cols); $i++) { if($ar_cols[$i]===null) continue; if($i==$last_key) $re_html .= '<div id="'. $preid.$ar_cols[$i]. '"> </div>'; else $re_html .= '<span id="'. $preid.$ar_cols[$i]. '"> </span>'; } $re_html .= '<script type="text/javascript">var ar_cols = '.json_encode($ar_cols).'; var preid = "'. $preid. '";</script>'; } else echo $re_html; ?> Link to comment https://forums.phpfreaks.com/topic/248857-dropdown-list-selection-help-with-getting-it-alphabeticl-order/ Share on other sites More sharing options...
junk4u Posted October 11, 2011 Author Share Posted October 11, 2011 Running Wampserver MySql 5.5.16 PHP 5.3.8 Okay, Sorry about the last post didn't see how to close the or delete the post. My bad. What can I add to get my drop down to be in alphabetical order? I've tried adding a clause to the sql statement, but I guess Im adding it in the wrong place as I keep getting errors or nothing changes. if(!isset($_SESSION)) session_start(); $server = 'localhost'; $user = 'root'; $pass = ''; $dbase = 'competitors'; $table = 'zip_code'; $ar_cols = array('state_prefix', 'city', 'zip_code', 'locationtext'); $preid = 'slo_'; $col = $ar_cols[0]; $re_html = ''; if(isset($_POST['col']) && isset($_POST['wval'])) { $col = trim(strip_tags($_POST['col'])); $wval = "'".trim(strip_tags($_POST['wval']))."'"; } $key = array_search($col, $ar_cols); $wcol = $key===0 ? $col : $ar_cols[$key-1]; $_SESSION['ar_cols'][$wcol] = isset($wval) ? $wval : $wcol; $last_key = count($ar_cols)-1; $next_col = $key<$last_key ? $ar_cols[$key+1] : ''; $conn = new mysqli($server, $user, $pass, $dbase); if (mysqli_connect_errno()) { exit('Connect failed: '. mysqli_connect_error()); } for($i=1; $i<=$key; $i++) { $ar_where[] = '`'.$ar_cols[$i-1].'`='.$_SESSION['ar_cols'][$ar_cols[$i-1]]; } $where = isset($ar_where) ? ' WHERE '. implode($ar_where, ' AND ') : ''; $sql = "SELECT DISTINCT `$col` FROM `$table`".$where; $result = $conn->query($sql); if ($result->num_rows > 0) { $onchg = $next_col!==null ? " onchange=\"ajaxReq('$next_col', this.value);\"" : ''; if($col!=$ar_cols[$last_key]) $re_html = $col. ': <select name="'. $col. '"'. $onchg. '><option>- - -</option>'; while($row = $result->fetch_assoc()) { if($col==$ar_cols[$last_key]) $re_html .= '<br/>'. $row[$col]; else $re_html .= '<option value="'. $row[$col]. '">'. $row[$col]. '</option>'; } if($col!=$ar_cols[$last_key]) $re_html .= '</select> '; } else { $re_html = '0 results'; } $conn->close(); if($col==$ar_cols[0]) { for($i=1; $i<count($ar_cols); $i++) { if($ar_cols[$i]===null) continue; if($i==$last_key) $re_html .= '<div id="'. $preid.$ar_cols[$i]. '"> </div>'; else $re_html .= '<span id="'. $preid.$ar_cols[$i]. '"> </span>'; } $re_html .= '<script type="text/javascript">var ar_cols = '.json_encode($ar_cols).'; var preid = "'. $preid. '";</script>'; } else echo $re_html; ?> [/quote] Link to comment https://forums.phpfreaks.com/topic/248857-dropdown-list-selection-help-with-getting-it-alphabeticl-order/#findComment-1277991 Share on other sites More sharing options...
fenway Posted October 11, 2011 Share Posted October 11, 2011 That's just lots of PHP. Post the actual query and the actual error. Link to comment https://forums.phpfreaks.com/topic/248857-dropdown-list-selection-help-with-getting-it-alphabeticl-order/#findComment-1278224 Share on other sites More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.