mirror of
				https://gitlab.com/ruany/litebans-php.git
				synced 2025-10-30 22:42:25 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			10 lines
		
	
	
		
			214 B
		
	
	
	
		
			PHP
		
	
	
	
	
	
			
		
		
	
	
			10 lines
		
	
	
		
			214 B
		
	
	
	
		
			PHP
		
	
	
	
	
	
| <?php
 | |
| $dbhost = 'localhost';
 | |
| $dbuser = 'root';
 | |
| $dbpass = 'password';
 | |
| $conn = mysql_connect($dbhost, $dbuser, $dbpass);
 | |
| if (!$conn) {
 | |
|     die('Could not connect: ' . mysql_error());
 | |
| }
 | |
| mysql_select_db('litebans');
 | |
| ?>
 | 
