mirror of
https://github.com/Mibew/tray.git
synced 2025-04-03 19:37:13 +03:00
git-svn-id: https://webim.svn.sourceforge.net/svnroot/webim/trunk@545 c66351dc-e62f-0410-b875-e3a5c0b9693f
12 lines
392 B
PHP
12 lines
392 B
PHP
<?php
|
|
define('DB_HOST', 'localhost');
|
|
define('DB_USER', 'root');
|
|
define('DB_PASSWORD', '');
|
|
define('DB_DATABASE', 'mibew');
|
|
//Maynot be needed it is deleteable, not sure if it's needed for profile page.
|
|
$link = mysql_connect(DB_HOST, DB_USER, DB_PASSWORD);
|
|
$db = mysql_select_db(DB_DATABASE);
|
|
$result = mysql_query("SELECT * FROM members") or die(mysql_error());
|
|
|
|
|
|
?>
|