sTableName = $sNewTableName; $this->sDisplayColumn = $sNewDisplayColumn; $this->sValueColumn = $sNewValueColumn; $this->sSelectName = $sNewSelectName; $this->bOrderAsc = $bNewOrderAsc; } /** * Create the HTML string that will be used to render the list box * * @return String html used to render the list box * */ function & render() { $sql = new Owl_DB(); $sql->query("SELECT $this->sDisplayColumn AS display, $this->sValueColumn AS value FROM $this->sTableName ORDER BY $this->sDisplayColumn " . ($this->bOrderAsc ? "ASC" : "DESC")); $sToRender = "

"; return $sToRender; } } ?>