mirror of
				https://github.com/simon987/Much-Assembly-Required-Frontend.git
				synced 2025-10-30 10:46:53 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			11 lines
		
	
	
		
			183 B
		
	
	
	
		
			PHP
		
	
	
	
	
	
			
		
		
	
	
			11 lines
		
	
	
		
			183 B
		
	
	
	
		
			PHP
		
	
	
	
	
	
| <?php
 | |
| include_once "include/config.php";
 | |
| 
 | |
| 
 | |
| class SqlConnection extends PDO
 | |
| {
 | |
|     public function __construct()
 | |
|     {
 | |
|         parent::__construct(SQL_HOST, SQL_USER, SQL_PASS);
 | |
|     }
 | |
| } |