Login   Register  
PHP Classes
elePHPant
Icontem

File: db_connect

Recommend this page to a friend!
Stumble It! Stumble It! Bookmark in del.icio.us Bookmark in del.icio.us
  Classes of kostas gougakis  >  Shopping basket with MySQL connection  >  db_connect  >  Download  
File: db_connect
Role: Auxiliary script
Content type: text/plain
Description: db_connect for product list
Class: Shopping basket with MySQL connection
Shopping basket stored in a MySQL database
Author: By
Last change:
Date: 2004-09-02 06:29
Size: 468 bytes
 

Contents

Class file image Download
<?
    $mysql_hostname 
'localhost';
    
$mysql_username 'phpdevelopment';
    
$mysql_password '';
    
$mysql_database 'phpdevelopment_db_uk';
    
$database mysql_connect($mysql_hostname$mysql_username$mysql_password);
    
mysql_select_db($mysql_database$database);


//$dbh=mysql_connect ("localhost", "travel4_kostas", "elmalia1") or die ('I cannot connect to the database because: ' . //mysql_error());
//mysql_select_db ("travel4_coranto"); 





?>