Conflicts:
	secret.php.example
This commit is contained in:
admin
2021-05-22 09:25:26 +02:00
4 changed files with 15 additions and 17 deletions

8
.gitignore vendored
View File

@@ -1,5 +1,5 @@
/.buildpath /.buildpath
/.project /.project
/secret.php /secret.php
/config.php /config.php
/test.php /test.php

View File

@@ -1,4 +1,2 @@
# php-func-lib # php-func-lib
git submodule add https://git.seemsleg.it/ef/php-func-lib lib git submodule add https://git.seemsleg.it/pub/php-func-lib lib
test

View File

@@ -1,10 +1,10 @@
<?php <?php
// include ('config.php'); // include ('config.php');
include_once ('sql.php'); include_once ('sql.php');
$sql = new SQL (); $sql = new SQL ();
include_once ('string.php'); include_once ('string.php');
include_once ('numbers.php'); include_once ('numbers.php');
include_once ('mail.php'); include_once ('mail.php');
include_once ('debug.php'); include_once ('debug.php');
include_once ('markdown.php'); include_once ('markdown.php');
?> ?>

View File

@@ -196,4 +196,4 @@ class SQL {
// echo 'DESTROY'; // echo 'DESTROY';
} }
} }
?> ?>