我想按字母順序排列我的activityComboHtml。任何幫助,將不勝感激。按字母順序列出下拉框
static function GetInnerContent()
{
$activityComboHtml=Page::getActivityTitles();
$ageComboHtml=Page::getAgeComboHtml();
$displayBanner="";
$bannerUrl=Page::fetchAllOrganizaitonBanners();
$staticBanner= HelpingDBMethods::getStaticBanner();
if($bannerUrl=="-1")
{
$displayBanner="style='display:none'";
}
return
這裏是靜態函數
static function getActivityTitles(){
$html="";
$Query="Select uniqueId, name from tbl_activity_type_general where NOT(uniqueId = '12')";
$result= mysql_query($Query);
if($result)
{
while($row= mysql_fetch_assoc($result))
{
$html=$html."<option id='".$row['uniqueId']."' value='".$row['uniqueId']."'>".$row['name']."</option>";
}
}
你能不能做一個'的print_r( )'$ activityComboHtml?無法判斷這是一個字符串,對象還是數組。 – Stegrex
你有'Page :: getActivityTitles()'的代碼嗎? – andrewsi
您是否曾嘗試在'getActivityTitles()'中的SQL的末尾添加'ORDER BY name'? – andrewsi