You cannot select more than 25 topics
			Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
		
		
		
		
		
			
		
			
				
	
	
		
			30 lines
		
	
	
		
			602 B
		
	
	
	
		
			PHP
		
	
			
		
		
	
	
			30 lines
		
	
	
		
			602 B
		
	
	
	
		
			PHP
		
	
| <?php
 | |
| /*
 | |
|  *
 | |
|  * @copyright (c) 2010 animegame.eu
 | |
|  * @license http://www.gnu.org/licenses/gpl-3.0.html GNU General Public Licence
 | |
|  *
 | |
|  */
 | |
| 
 | |
| # Um die Datenbank nutzen zu koennen muss eine db.php erstellt werden, bitte diese nicht in die Versionskontrolle einfügen!!
 | |
| 
 | |
| #####Online Bitte für localhost eintragen!!
 | |
| $db_host = "Server";
 | |
| $db_user ="username";
 | |
| $db_passwort ="password";
 | |
| $db_name = "databasename";
 | |
| 
 | |
| 
 | |
| $conn = mysql_connect($db_host, $db_user, $db_passwort);
 | |
| $db = mysql_select_db($db_name, $conn);
 | |
| 
 | |
| 
 | |
| //////////////////Animegame NPC
 | |
| $bebi = "2";
 | |
| $mihawk = "4";
 | |
| $brolly = "1";
 | |
| $flamingo = "3";
 | |
| 
 | |
| ?>
 | |
| 
 |