d2tools/src/D2Strings.php
2023-06-04 23:01:26 -06:00

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;
}
}