First complete upload CasaDoc

This commit is contained in:
2024-09-18 10:42:19 +02:00
commit 2ab3e52df3
3042 changed files with 407823 additions and 0 deletions
+21
View File
@@ -0,0 +1,21 @@
<?php
# FileName="WADYN_MYSQLI_CONN.htm"
# Type="MYSQL"
# HTTP="true"
$hostname_yogiwherequery = "localhost";
$database_yogiwherequery = "casadocdb";
$username_yogiwherequery = "solocla";
$password_yogiwherequery = "!Massarosa2";
$servername = $hostname_yogiwherequery;
$username = $username_yogiwherequery;
$password = $password_yogiwherequery;
$database = $database_yogiwherequery;
@session_start();
$yogiwherequery = mysqli_init();
if (defined("MYSQLI_OPT_INT_AND_FLOAT_NATIVE")) $yogiwherequery->options(MYSQLI_OPT_INT_AND_FLOAT_NATIVE, TRUE);
$yogiwherequery->real_connect($hostname_yogiwherequery, $username_yogiwherequery, $password_yogiwherequery, $database_yogiwherequery) or die("Connect Error: " . mysqli_connect_error());
?>