Hello!
I am a new user here.
I am trying to set up following:
5 users per day with events that can reoccur. Fetching data from mysql.
Can someone help me to start? Examplefiles dont save to database.
Ive changed config.php to:
[code]<?php
// require_once(dirname(FILE).’/connector/db_sqlite3.php’);
require_once(dirname(FILE).’/connector/db_mysqli.php’);
// Mysql
$dbtype = “MySQL”;
$res=mysql_connect(“localhost”, “root”, “”);
mysql_select_db(“schedule”);
?>[/code]
And dump.sql is in mysql with all tables and data set up.