Just open up config.php... it should be pretty self-evident what should go where...
<?php // config.php :: Low-level app/database variables.
$dbsettings = Array(
"server" => "SERVER GOES HERE", // MySQL server name. (Usually localhost.)
"user" => "USERNAME GOES HERE", // MySQL username.
"pass" => "PASSWORD GOES HERE", // MySQL password.
"name" => "DB NAME GOES HERE", // MySQL database name.
"prefix" => "PREFIX GOES HERE", // Prefix for table names.
"secretword" => "COOKIE WORD GOES HERE"); // Secret word used when hashing information for cookies.
?>
---Jamin