home *** CD-ROM | disk | FTP | other *** search
/ Practical Internet Web Designer 90 / PIWD90.iso / pc / contents / ecommerce / software / osCommerce.exe / oscommerce-2.2ms2 / extras / mysql.php next >
Encoding:
PHP Script  |  2001-01-15  |  340 b   |  9 lines

  1. <?php
  2.     $mysql_host = "your_hostname.com"; // host name
  3.     $mysql_user = "your_username"; // username
  4.     $mysql_pass = "your_password"; // password
  5.     $mysql_database = "your_database"; // database
  6. // connect
  7.     mysql_connect ($mysql_host, $mysql_user, $mysql_pass) or die(mysql_error());
  8.     mysql_select_db ($mysql_database) or die(mysql_error());
  9. ?>