This repository has been archived on 2024-03-18. You can view files and clone it, but cannot push or open issues or pull requests.
mybb-digest/digest.php

13 lines
374 B
PHP
Raw Normal View History

2017-05-04 09:11:59 +03:00
<?php
require_once "vendor/autoload.php";
require_once "activethreads.php";
define("MYBB_ROOT", "../");
define("MYBB_PREFIX", "mybb_");
define("FORUM_ID", 0);// 0 means all forums
$dsn = 'mysql:host=localhost;dbname=mybb;charset=utf8';
$usr = 'root';
$pwd = '123456';
$pdo = new \Slim\PDO\Database($dsn, $usr, $pwd);
$threads = getLatestActiveThreads(FORUM_ID, 100, true);