This is probably an easy one for the people here. But I've been trying to
solve this all weekend without success.

I'm using Dreamweaver with MySQL 4.1.10 and PHP 5.0.4. This is a WAMP package
and it installed and came up without problems.

I create a database using phpMyAdmin, then create a table. Everything looks
fine.

In Dreamweaver, I set a site up on my local environment and set the Testing
Server to be the local Apache server. Everything tests out fine.

Then with Dreamweaver I create a php page with a form. I use the Databases
panel-command to connect to my MySQL database. I set the host to localhost and
the login to root . Clicking on "Select" next to "Databases" takes me to a
menu where I choose the database I created. No problems. The connection is
made and the database appears in the Databases panel in Dreamweaver.

Then I go to look for my table in the Database list in Dreamweaver. But the
table isn't there. I check the priviledges for root. It has Global
Priviledges for everything. I check the table using phpMyAdmin, and It's there
waiting patiently. I try to create a Server Behavior in my form to bind to the
table. It finds the database, but reports that there are no tables in the
database.

So, figuring that my PHP/MySQL might be incorrectly setup, I, instead, connect
to the "MySQL" database that comes with MySQL. I can see those tables in
Dreamweaver. But I can't see the table in the database that I created.

What am I doing wrong? I'm tearing my hair out!

Mark