Show sourcecode

The following files exists in this folder. Click to view.

webbutv3/word-app/util/

db_connect.php
dict.xml
practice.php
user.php
util.php

db_connect.php

14 lines ASCII Windows (CRLF)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
<?php
error_reporting
(E_ERROR E_PARSE);
$db = new mysqli("127.0.0.1""word_app""123abc""word_app"3306);

function 
quick_statment($statement$types, ...$values)
{
    global 
$db;
    
$stmt $db->prepare($statement);
    
$stmt->bind_param($types, ...$values);
    
$stmt->execute();
    return 
$stmt->get_result();
}

//echo $db->host_info . "\n";