Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.
mysql_query(...)[red] or die(mysql_error())[/red];
$query = "INSERT INTO user (Host, User, Password)
VALUES('127.0.0.1', '$username', '$password')";
mysql_query($query) or die(mysql_error());
$query2 = "GRANT CREATE ON Fantasy_Football_2010.* TO {$username}@{$dbhost}";
mysql_query($query2) or die(mysql_error());