����JFIF��H�H����Exif��MM�*���� ��3����V�����3������3�(��������������������3�����
Server IP : 74.208.127.88 / Your IP : 3.145.165.217 Web Server : Apache/2.4.41 (Ubuntu) System : Linux ubuntu 5.4.0-163-generic #180-Ubuntu SMP Tue Sep 5 13:21:23 UTC 2023 x86_64 User : www-data ( 33) PHP Version : 7.4.3-4ubuntu2.29 Disable Function : pcntl_alarm,pcntl_fork,pcntl_waitpid,pcntl_wait,pcntl_wifexited,pcntl_wifstopped,pcntl_wifsignaled,pcntl_wifcontinued,pcntl_wexitstatus,pcntl_wtermsig,pcntl_wstopsig,pcntl_signal,pcntl_signal_get_handler,pcntl_signal_dispatch,pcntl_get_last_error,pcntl_strerror,pcntl_sigprocmask,pcntl_sigwaitinfo,pcntl_sigtimedwait,pcntl_exec,pcntl_getpriority,pcntl_setpriority,pcntl_async_signals,pcntl_unshare, MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : OFF | Sudo : ON | Pkexec : ON Directory : /var/www/html/goldencar/sae/model/ |
Upload File : |
<?php class sql extends dbconn { public function __construct() { $this->initDBO(); } public function new_customer($name,$country,$phone,$gender) { $db = $this->dblocal; try { $kind=2; $stmt = $db->prepare("insert into person(name,country,phone,gender,kind) values (:name,:country,:phone,:gender,:kind)"); $stmt->bindParam("name",$name); $stmt->bindParam("country",$country); $stmt->bindParam("phone",$phone); $stmt->bindParam("gender",$gender); $stmt->bindParam("kind", $kind); $stmt->execute(); $stat[0] = true; $stat[1] = "Success save customer"; return $stat; } catch(PDOException $ex) { $stat[0] = false; $stat[1] = $ex->getMessage(); return $stat; } } public function list_customer() { $db = $this->dblocal; try { $stmt = $db->prepare("select * from person where kind =2"); $stmt->execute(); $stat[0] = true; $stat[1] = "List customer"; $stat[2] = $stmt->fetchAll(PDO::FETCH_ASSOC); return $stat; } catch(PDOException $ex) { $stat[0] = false; $stat[1] = $ex->getMessage(); $stat[2] = []; return $stat; } } public function edit_customer($id,$name,$country,$phone,$gender) { $db = $this->dblocal; try { $stmt = $db->prepare("update person set name = :name, country = :country, phone = :phone , gender = :gender where id = :ids "); $stmt->bindParam("ids",$id); $stmt->bindParam("name",$name); $stmt->bindParam("country",$country); $stmt->bindParam("phone",$phone); $stmt->bindParam("gender",$gender); $stmt->execute(); $stat[0] = true; $stat[1] = "Success edit customer"; return $stat; } catch(PDOException $ex) { $stat[0] = false; $stat[1] = $ex->getMessage(); return $stat; } } public function delete_customer($id) { $db = $this->dblocal; try { $stmt = $db->prepare("delete from person where id = :id"); $stmt->bindParam("id",$id); $stmt->execute(); $stat[0] = true; $stat[1] = "Success delete customer"; return $stat; } catch(PDOException $ex) { $stat[0] = false; $stat[1] = $ex->getMessage(); return $stat; } } }