Ok, to create a database you'll go to the cPanel's first page, and you should see a link labeled "MySQL Databases". (If you can't find it press CTRL + F to search the page)
Inside of the MySQL Databases page you should see a text box that says "Create a MySQL Database" or something like that.
Give it a name that is easy to remember (Example: Scooby)
it should take you to another page saying you have successfully created the database.
Click "Go Back" and it will take you back to that page.
On the page "MySQL Databases" look for a spot that reads "Create a User"
Make a username and password and click next. (Example: Username = "uname" Password = "pword")
it will take you to another page and just click "Go Back"
On the page "MySQL Databases" scroll down to where it says "Add user to a database".
you should have 2 dropdowns one labeled "User" and the other "Database"
choose the user that you just created (in my case "uname")
and then choose the database that you just created (in my case "Scooby")
make sure that you have "All Privileges" checked.
That is it for creating the database.
now go to phpMyAdmin and on the left you should see your database in a list of databases. Like this
A database
Another Database
Scooby
Click on the database that you created and then you should see a page like this.
http://i31.tinypic.com/rkpnxy.jpg
Now to connect to the database so you can retrieve your links.
DON'T GIVE ANYONE ELSE THIS INFORMATION!!!
<?php
// What is your cpanel username
//Put it inside the quotes.
$cpanel = "";
//You probably don't need to change this
$host = "localhost";
// Put the username that you used on "MySQL Page" inside the quotes.
$username = "";
// and put your password inside these quotes.
$password = "";
//and last put the name of your database here inside the quotes.
$database = "";
$nusername = $cpanel . "_" . $username;
$ndatabase = $cpanel . "_" . $database;
$con = mysql_connect($host, $nusername, $password)
or die(mysql_error());
mysql_select_db($ndatabase, $con);
?>
copy and paste this code ^ and replace it with this
<?php
$host = "localhost";
$user = "root";
$pwd = "";
$con = mysql_connect($host, $user, $pwd)
or die(mysql_error());
mysql_select_db(tuts, $con);
?>
If you still need help just ask!