All looks a bit complicated to me unfortunately.
As a starting point, I have added some users to the Priveliges section in phpMyAdmin - so basically 'root', plus a couple of other users.
At the moment Dreamweaver connects with the database using :
<?php
# FileName="Connection_php_mysql.htm"
# Type="MYSQL"
# HTTP="true"
$hostname_connDevelopments = "localhost";
$database_connDevelopments = "developments";
$username_connDevelopments = "root";
$password_connDevelopments = "[i]password[/i]";
$connDevelopments = mysql_pconnect($hostname_connDevelopments, $username_connDevelopments, $password_connDevelopments) or trigger_error(mysql_error(),E_USER_ERROR);
?>
How do I go about users logging in?