did you add the user digital_manturaf to MySQL yourself? if so, you are getting this error because you have not setup permissions for this user telling MySQL what database(s) that user is allowed to access.
If you have not added your digital_manturaf user to the MySQL users table, then you are getting this error because you cannot use any user id and password you want to access your database. WAMP comes with the default MySQL root user set with no password. so, to access MySQL you need to use root with no password
for example: mysql_connect ('localhost', 'root', null);
for security concerns, you should set a password for you root user. follow the second post here about securing your MySQL server.
[
forum.wampserver.com]
Post Edited (08-05-06 10:07)
CyberSpatium----------------------WAMP Forum Admin
Web Development for Newbie's Blog - Check out my new blog. It is for web developers, and especially tailored for the web development newbie. If you are not fluent in “geek speak”, then this incredible resource is just you. And even if you are a web development pro, this is a great resource to check out some of the latest web development tips, news, tutorials, codes and more.