20 lines
		
	
	
		
			472 B
		
	
	
	
		
			PHP
		
	
	
	
			
		
		
	
	
			20 lines
		
	
	
		
			472 B
		
	
	
	
		
			PHP
		
	
	
	
<?php
 | 
						|
	//MySQL setup
 | 
						|
  $sqlhost="localhost";
 | 
						|
  $sqluser="root";
 | 
						|
  $sqlpass="";
 | 
						|
  $dbname="test";
 | 
						|
 | 
						|
	//Board and site info
 | 
						|
  $boardname="board title here";
 | 
						|
  $siteurl="http://yoursite.com";
 | 
						|
  $sitename="Your Site Name Here";
 | 
						|
 | 
						|
	//Dropdown links at the bottom
 | 
						|
/*
 | 
						|
	$affiliatelinks="<form><select onchange=window.open(this.options[this.selectedIndex].value)>
 | 
						|
	<OPTION selected>Forum affiliates:
 | 
						|
	 <option value=about:blank>Blank Page
 | 
						|
	</select></form>";
 | 
						|
*/
 | 
						|
?>
 |