amirhamza05 / Student-Management-System

This is a simple web-based student management software written in PHP and Javascript. This was specifically written for school or educational organization.
http://ems.tserm.com/
253 stars 152 forks source link

undefind offset in connet.php #19

Closed Mr-Hackyy closed 4 years ago

Mr-Hackyy commented 4 years ago

public function set_institute_info(){ $sql="select * from setting"; $info=$this->get_sql_array($sql); $img="upload/custom_content/"; $this->site_name=$info[0]['option_value']; $this->sort_name=$info[1]['option_value']; $this->address=$info[2]['option_value']; $this->phone=$info[5]['option_value']; $this->email=$info[6]['option_value']; $this->logo=$img.$info[4]['option_value']; $this->main_logo=$img.$info[3]['option_value']; $this->msg="@".$info[1]['option_value'];

}

Mr-Hackyy commented 4 years ago

THIS IS THE RIGHT CODE , I SOLVE LOGIN ISSUE CHANGE CODE TO, public function set_institute_info(){ $sql="select * from setting"; $info=$this->get_sql_array($sql); $img="upload/custom_content/"; $this->site_name="ADD YOUR SITE NAME HERE"; $this->sort_name="ADD SORT NAME HERE"; $this->address="ADD ADDRESS HERE"; $this->phone="ADD PHONE NUMBER HERE"; $this->email="ADD YOUR MAIL ID HERE "; $this->logo=""; $this->main_logo=""; $this->msg="@";

}