9 Commits

Author SHA1 Message Date
Sebastian Titz
234e187a54 merge 2021-05-10 13:27:51 +02:00
d8f5fd7f3a pub 2021-05-10 09:57:56 +02:00
admin
a30fd21842 Merge branch 'master' of https://git.seemsleg.it/pub/php-func-lib.git
into HEAD

Conflicts:
	.gitignore
	README.md
	_func.php
	secret.php.example
	sql.php
2021-05-09 18:13:15 +02:00
admin
57421ead5e . 2021-05-09 18:10:53 +02:00
a846fe2fa7 Initial commit 2021-05-09 15:10:06 +02:00
troy grunt
06a3112617 . 2021-04-09 15:13:07 +02:00
troy grunt
064d8f0df3 Merge branch 'master' of https://git.seemsleg.it/pub/php-func-lib 2021-04-09 15:11:31 +02:00
troy grunt
19dcea8344 Merge branch 'master' of https://git.seemsleg.it/pub/php-func-lib
Conflicts:
	README.md
2021-04-09 15:04:31 +02:00
b8e078f470 Initial commit 2021-04-06 13:39:59 +02:00
5 changed files with 25 additions and 26 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,3 +1,2 @@
git submodule add https://git.seemsleg.it/ef/php-func-lib lib # php-func-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

@@ -1,10 +1,10 @@
<?php <?php
if (!defined('SQL_LOG')) define ( 'SQL_LOG', 1 ); // schreibt sql querys in eine log if (!defined('SQL_LOG')) define ( 'SQL_LOG', 1 ); // schreibt sql querys in eine log
$_m['host'] = 'localhost'; $_m['host'] = 'localhost';
$_m['user'] = ''; $_m['user'] = '';
$_m['pass'] = ''; $_m['pass'] = '';
$_m['data'] = ''; $_m['data'] = '';
$_m['pre'] = 'efcms2_'; $_m['pre'] = 'efcms2_';
$_m['salt'] = ''; $_m['salt'] = '';
?> ?>

View File

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