q.php doesn't work
Status: Pre-Alpha
Brought to you by:
keymonkey
Hi,
in q.php is the same bug as ID 32 present. The DB-Connection must open before the function mifi is used. Attached is the change.
//q.php line 1:
arh
autocorrection....
line 2
$adfl = FALSE;
include_once('config/config.php');
include "./classes/mysql.class.php";
include_once('functions.php');
$mysqldb = new mysql();
$mysqldb->connect();
$title = "Question";
Hi Andy,
I saw you react very quickly, that's cool.
But the fix is not complete:
the include: include "./classes/mysql.class.php";
is included twice and after the first include a DB-connection should be opened.
after line 4
include "./classes/mysql.class.php";
include_once('functions.php');
$mysqldb = new mysql();
$mysqldb->connect();
Best regards,
Christoph