php - Preset currency value on select codeigniter -
i have select box currency 1 , 2, currency 1 euro. want select box preset value 1 euro. i using controller currency information this. $data = array( 'sexlist' => $this->localization->gettextparamvalues(null, 'user', 'sex'), 'countrylist' => $this->localization->getcountrylist(), 'currencylist' => $this->localization->getcurrencylist(), 'languagelist' => $this->localization->getlanguagelist(), 'user' => $userexist, 'userinfo' => $this->user_profile->getuserinfo(), 'currency' => $this->localization->getcompanycurrency() ); $this->load->view('header', $this->history->getpreviouspageinarray()); $this->load->view('borrow_registerpage_view',$data); the currency pushing value 1 data array, in html file doesnt prese...