version 4.2

compatible with PHP 5.4 and earlier
This commit is contained in:
Larry Lam
2019-01-25 16:41:41 -08:00
committed by GitHub
parent d987fc3d40
commit bbe5872691
26 changed files with 2207 additions and 0 deletions
+18
View File
@@ -0,0 +1,18 @@
<!--
www.vnlisting.com
Online Super Bowl Squares Script
Please read the "Readme.txt for license agreement, installtion and usage instructions
-->
<?php
// Full URL path to your superbowl. ex. www.yoursite.com/superbowl
$superbowlURL = "http://www.vnlisting.com/superbowl";
//make changes accordingly to your database
$hostname = "lukhach.powwebmysql.com";
$database = "superbowl_51";
$username = "superbowl51";
$password = "vnlisting";
$db = mysql_connect($hostname, $username, $password);
$db_select = mysql_select_db($database, $db) or mysql_error();
?>