私は CodeIgniter を初めて使用します。CI のドキュメントを読み込もうとしましたが、まだ問題を解決できません。ここの誰かが私の問題を解決してくれるかもしれません。これが私のコードです:
私のコントローラーで
class Registration extends CI_Controller{
function __construct(){
parent::__construct();
$this->load->model('registration_model','rmod');
}
function ambil() {
$gender = $this->input->post('kelamin');
$tinggi = $this->input->post('height');
$berat = $this->input->post('weight');
$weight = $this->rmod->ambilBeratPria($tinggi);
echo $weight;
}
私のモデルでは
function ambilBeratPria($tinggi) {
$this->db->select('berat')->from('pria')->where('tinggi',$tinggi);
$query = $this->db->get();
return $query;
}
モデルでクエリの結果を取得したいのですが、次のようなエラーが発生します。
Message: Object of class CI_DB_mysql_result could not be converted to string
多分ここの誰かが私の問題を解決するのを助けることができますか? ありがとう。