Warning: mysql_connect() [function.mysql-connect]: Access denied for user 'ekohall_seyiphp'@'localhost' (using password: YES) in /home/public_html/web/lib/db_var.php on line 6
Warning: mysql_select_db() [function.mysql-select-db]: Access denied for user 'nobody'@'localhost' (using password: NO) in /home/public_html/web/lib/db_var.php on line 7
Warning: mysql_select_db() [function.mysql-select-db]: A link to the server could not be established in /home/public_html/web/lib/db_var.php on line 7
Check that you are using the right database names and that you actually have your username and password correct. For instance, though I may call my db name and table name A and B respectively, my host for some reason tacks on a host-A and hosttable-B. In other words, go to the database portion of your cpanel to see what the names actually are and/or contact them for the info and/or visit their FAQ pages
Warning: session_start() [function.session-start]: Cannot send session cookie - headers already sent by (output started at /home/public_html/web/lib/db_var.php:6) in /home/ekohall/public_html/web/usdv.php on line 3
Warning: session_start() [function.session-start]: Cannot send session cache limiter - headers already sent (output started at /home/public_html/web/lib/db_var.php:6) in /home/public_html/web/usdv.php on line 3
this is most likely because you are calling your sessions and cookies after you have sent info in your HEAD portion of your page. In other words, chances aer that your code looks like this:
<html>
<head>
<title>
</title>
</head>
<body>
<?php session or cookie info?>
</body>
</html>
As opposed to this (note positioning of the session/cookie var):
<?php session or cookie info?>
<html>
<head>
<title>
</title>
</head>
<body>
</body>
</html>
In other words, always call your session/cookie vars before outputting any HTML
Good luck!