QUOTE(mattyk3001 @ Sep 6 2008, 11:59 PM)

<?php
$c = mysql_connect('localhost', 'root', 'p1kap1ka');
mysql_select_db('lite2', $c);
$mykey=256573440;
?>
In this code where shall I post my database name (and my database name should it contain my hosting name so before it there should be a165_game For example? or should it just be game?) and where shall I put the user password?
According to MySQL manual
mysql_connect ( [string server [, string username [, string password [, bool new_link [, int client_flags]]]]] )
So clearly "root" in your code is the username and "p1kap1ka" is your password.
As for database name,
mysql_select_db ( string database_name [, resource link_identifier] )
So, it would be "lite2".
When you create your database in cpanel, you should have the database name generated for you. The lasttime I did, it appended my username along with it like you suggested. Anyway, you should check the generated name in cpanel instead of mere guessing.
Comment/Reply (w/o sign-up)