This repository has been archived on 2024-11-28. You can view files and clone it, but cannot push or open issues or pull requests.
LuisLeon_WebOSC/extras/mysql.php

9 lines
340 B
PHP
Raw Normal View History

<?php
$mysql_host = "your_hostname.com"; // host name
$mysql_user = "your_username"; // username
$mysql_pass = "your_password"; // password
$mysql_database = "your_database"; // database
// connect
mysql_connect ($mysql_host, $mysql_user, $mysql_pass) or die(mysql_error());
mysql_select_db ($mysql_database) or die(mysql_error());
?>