Student


~/tmp/ZF/ganext/Student.php.html  1 <?php  2 // Konieczne podanie ścieżki do katalogu models  3 // class BazaZF_Student extends Zend_Db_Table_Abstract  4 class Application_Model_DbBazaZF_Student extends Zend_Db_Table_Abstract  5 {  6  7     protected $_name = 'student';  8  9      10 11     public function addStudent($imie, $nazwisko,$album,$ocena_1) 12     { 13         $data = array( 14             'imie' => $imie, 15             'nazwisko' => $nazwisko, 16             'album' => $album, 17             'ocena_1' => $ocena_1, 18         ); 19         $this->insert($data); 20     } 21 22     public function updateStudent($id_student, $imie, $nazwisko,$album,$ocena_1) 23     { 24         $data = array( 25             'imie' => $imie, 26             'nazwisko' => $nazwisko, 27             'album' => $album, 28             'ocena_1' => $ocena_1, 29         ); 30         $this->update($data, 'id_student = '. (int)$id_student); 31     } 32 33     public function deleteStudent($id_student) 34     { 35         $this->delete('id_student =' . (int)$id_student); 36     } 37 38     public function getStudent($id_student) 39     { 40 41         $id_student = (int)$id_student; 42         $row = $this->fetchRow('id_student = ' . $id_student); 43         if (!$row) { 44             throw new Exception("Brak $id_student"); 45         } 46         return $row->toArray(); 47     } 48 } 49

Wyszukiwarka

Podobne podstrony:
studentcanpost
student
wyklad z analizy matematycznej dla studentow na kierunku automatyka i robotyka agh
april 09 uppersecondary students
cw16 krata student
3? EXAM LANGUAGE ELEMENTSfor students
student10 2
niezbednik studenta cz 2
Dla studentów administracji
notatek pl materiały dla studentów (repetytorium) sem1
student wniosek osw dochody
studentek
6 lect6 truss students
WYKL 2 biol 2012 studen

więcej podobnych podstron