Citat:
Ursprungligen postat av Magnus_A
|
Tack!
Testade nyss och jag får inget error iallafall men den visar fortfarande inte highlighted!
PHP-kod:
$user = "xxx";
$pass = "xxx";
$dbh = new PDO('mysql:host=xxx;dbname=xxx', $user, $pass);
$sth = $dbh->prepare('SELECT date FROM events GROUP BY date');
$sth->execute();
/* Fetch all of the remaining rows in the result set */
$result = $sth->fetchAll();
$calendar->highlighted_dates = $result;