| 6 |
kaklik |
1 |
<?php
|
|
|
2 |
//Dc-shout2.0 (c)devilcoderz 2004
|
|
|
3 |
//data base settings
|
|
|
4 |
$dbuser = "chaosdell" ; //your data base username
|
|
|
5 |
$dbpass = "sesvul";//your data base password
|
|
|
6 |
$dbname = "dcshout"; //data base name
|
|
|
7 |
$host = "localhost" ; //your host name
|
|
|
8 |
$theme = "basic";//Your shout box theme
|
|
|
9 |
//dont edit below this line
|
|
|
10 |
|
|
|
11 |
// lets start off with the concation
|
|
|
12 |
mysql_connect($host, $dbuser, $dbpass) or die ("did not connect to db") ;
|
|
|
13 |
mysql_select_db($dbname) ;
|
|
|
14 |
//That was the easy part
|
|
|
15 |
?>
|
|
|
16 |
|