Added entirety of CAD files, Software and the translated documentation

This commit is contained in:
Raphael Maenle
2019-11-12 19:55:35 +01:00
commit 134990e892
266 changed files with 48020 additions and 0 deletions

View 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);
}
?>