Warning: Missing argument 2 for Class_DB::__construct(), called in /Applications/XAMPP/xamppfiles/htdocs/Shirt/index.php on line 5 and defined in /Applications/XAMPP/xamppfiles/htdocs/Shirt/connect/class_db_inc.php on line 4
Warning: Missing argument 3 for Class_DB::__construct(), called in /Applications/XAMPP/xamppfiles/htdocs/Shirt/index.php on line 5 and defined in /Applications/XAMPP/xamppfiles/htdocs/Shirt/connect/class_db_inc.php on line 4
Warning: Missing argument 4 for Class_DB::__construct(), called in /Applications/XAMPP/xamppfiles/htdocs/Shirt/index.php on line 5 and defined in /Applications/XAMPP/xamppfiles/htdocs/Shirt/connect/class_db_inc.php on line 4
Warning: mysql_connect() [function.mysql-connect]: Unknown MySQL server host 'DB_HOST,DB_ROOT,DB_PW,DB_NAME' (1) in /Applications/XAMPP/xamppfiles/htdocs/Shirt/connect/class_db_inc.php on line 6
Unknown MySQL server host 'DB_HOST,DB_ROOT,DB_PW,DB_NAME' (1)
<?php
class Class_DB
{
public function __construct($host,$user,$pass,$db_name)
{
mysql_connect($host,$user,$pass) or die (mysql_error());
mysql_select_db($db_name);
echo "connect";
}
}
?>