Vanilla 1.1.4 is a product of Lussumo. More Information: Documentation, Community Support.
Help keep Vanilla free:1 to 16 of 16
if( strstr($_SERVER['SERVER_SOFTWARE'], 'Microsoft-IIS'))
header("Refresh: 0;url=$location");
else
header("Location: $location");
<?php
// Turn on all errors
error_reporting(E_ALL);
// Customize your database connection
$Host = "Your MySQL Host Name";
$User = "Your MySQL Username";
$Password = "Your MySQL Password";
$Database = "Your MySQL database name";
// Open a database connection (you may see some errors here)
$Connection = mysql_connect($Host, $User, $Password);
// Attempt to select your database
if ($Connection && !mysql_select_db($Database, $Connection)) echo("Failed to connect to the '".$Database."' database.");
?>1 to 16 of 16