18.11.2016, 21:14
Quote:
@amirm how did you get the mysqli to work? I tried with mysqli_connect but seems that I get undefined symbol for it PHP код:
|
PHP код:
$mysql;
Event::on("GameModeInit", function () use (&$mysql) {
$mysql = mysqli_connect("127.0.0.1", "samp", "0000", "samp");
});
Event::on("GameModeExit", function () use (&$mysql) {
mysqli_close($mysql);
});
If you still can't use it, maybe your PHP version is outdated.