-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathconfig.sample.php
More file actions
34 lines (31 loc) · 843 Bytes
/
config.sample.php
File metadata and controls
34 lines (31 loc) · 843 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
<?php
# This is an example configuration file
# for Simple Todo List
#
# It lists all the available settings,
# with descriptions and exemplary values.
#
# For the actual program to work, a file
# named config.php is required with the
# configuration values required for your
# setup.
#
# Please note that you need to adapt
# these values to your specific setup
#
########################################
# database connection settings:
# the database connection host.
$db_host = "localhost";
# the database user
$db_user = "todo";
# the database password
$db_password = "";
# the database name
$db_database = "todo";
########################################
# language settings:
# the preferred language:
$language = "en-US";
# note: the file with the name $language.ini from lang
# folder will be used to translate all strings