XenForo
Administrative
- Thread starter
- Admin
- #1
Hello,
I would like to access a non XF2 mysqli database from a custom addon.
PHP:
Unfortunately, the attempt to connect to Mysqli causes an error: Could not fetch Mysqli.
The database exists. I use the same call successfully in another PHP script, but without...
Read more
ادامه مطلب...
I would like to access a non XF2 mysqli database from a custom addon.
PHP:
Code:
<?php
namespace mynamespace;
class myClass
{
.....
public static function myfunction($mediaKey, array $site, $siteId) {
...
$mysqli = new \mysqli($this_host,$this_user,$this_pw,$this_db);
....
Unfortunately, the attempt to connect to Mysqli causes an error: Could not fetch Mysqli.
The database exists. I use the same call successfully in another PHP script, but without...
Read more
ادامه مطلب...