Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save itswadesh/dbf27ce1ea3a34f027124526d0661412 to your computer and use it in GitHub Desktop.
Save itswadesh/dbf27ce1ea3a34f027124526d0661412 to your computer and use it in GitHub Desktop.
<?php
class Database {
private $host = "localhost";
private $user = "root";
private $password = "root";
private $database = "crud";
function runQuery($sql) {
$conn = new mysqli($this->host,$this->user,$this->password,$this->database);
if ($conn->connect_error) {
die("Connection failed: " . $conn->connect_error);
}
$result = $conn->query($sql);
if ($result->num_rows > 0) {
while($row = $result->fetch_assoc()) {
$resultset[] = $row;
}
}
$conn->close();
if(!empty($resultset))
return $resultset;
}
}
?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment