mirror of
https://gitlab.com/hashborgir/d2tools.git
synced 2025-04-27 14:55:38 +00:00
22 lines
338 B
PHP
22 lines
338 B
PHP
<?php
|
|
|
|
/**
|
|
*
|
|
*/
|
|
class D2Strings {
|
|
/**
|
|
* @var array
|
|
*/
|
|
public array $strings;
|
|
|
|
/**
|
|
*
|
|
*/
|
|
public function __construct(){
|
|
$sql = "SELECT * FROM strings";
|
|
$this->strings = PDO_FetchAssoc($sql);
|
|
$_SESSION['strings'] = $this->strings;
|
|
return $this->strings;
|
|
}
|
|
}
|