11 lines
		
	
	
		
			388 B
		
	
	
	
		
			PHP
		
	
	
	
	
	
			
		
		
	
	
			11 lines
		
	
	
		
			388 B
		
	
	
	
		
			PHP
		
	
	
	
	
	
| <?php
 | |
| 
 | |
| 	class Configuration
 | |
| 	{
 | |
| 		public static $mysqlserver = 'mysql.mydomain';    //Host
 | |
| 		public static $mysqluser = 'shoppingList';           //User [It's recommended to not use root]
 | |
| 		public static $mysqlpw = 'somePassword';                 //Password
 | |
| 		public static $mysqldb = 'shoppingList';       //Database                               
 | |
| 		public static $mysqlPort = 3306;
 | |
| 	}
 | |
| ?>
 |