mirror of
				https://github.com/Mibew/design.git
				synced 2025-10-31 02:25:57 +03:00 
			
		
		
		
	git-svn-id: https://webim.svn.sourceforge.net/svnroot/webim/trunk@536 c66351dc-e62f-0410-b875-e3a5c0b9693f
		
			
				
	
	
		
			15 lines
		
	
	
		
			306 B
		
	
	
	
		
			PHP
		
	
	
	
	
	
			
		
		
	
	
			15 lines
		
	
	
		
			306 B
		
	
	
	
		
			PHP
		
	
	
	
	
	
| <?php
 | |
| // db info
 | |
| $hostname="localhost";
 | |
| $mysql_login="root";
 | |
| $mysql_password="";
 | |
| $database="mibew";
 | |
| 
 | |
| if (!($db = mysql_connect($hostname, $mysql_login , $mysql_password))){
 | |
|   die("Can't connect to mysql.");    
 | |
| }else{
 | |
|   if (!(mysql_select_db("$database",$db)))  {
 | |
|     die("Can't connect to db.");
 | |
|   }
 | |
| }
 | |
| ?> 
 |