Added entirety of CAD files, Software and the translated documentation
This commit is contained in:
17
02_Software/02_RaspberryPi/db.inc.php
Normal file
17
02_Software/02_RaspberryPi/db.inc.php
Normal file
@ -0,0 +1,17 @@
|
||||
<?php
|
||||
|
||||
$host = "localhost";
|
||||
$username = "root";
|
||||
|
||||
$password = "root";
|
||||
|
||||
$dbname = "rpr_robot";
|
||||
$result_array = array();
|
||||
|
||||
/* Create connection */
|
||||
$conn = new mysqli ($host, $username, $password, $dbname);
|
||||
if ($conn->connect_error) {
|
||||
die("Connection failed: " . $conn->connect_error);
|
||||
}
|
||||
|
||||
?>
|
Reference in New Issue
Block a user