I'm sorry let me see if I can explain this a bit better. I have created web pages in MS Front Page, and I am writing my forms and php, but I would like to test the queries to see if they work. Is there anyway I can do that? Or do I just need a simple connection string like you all have suggested. Thank you for your help
Ok You are using Front Page which I guess is OK, but you might want to lookk at PHP Designer to edit and actually view pages, and to test PHP with a MySQL Database you would need these things;
A web server like Apache (it is free),,
PHP (it is also free)
A RDBMS like MySQL (which of course is free)
You can use XAMPP or WAMP for windows, or MAMP for a Mac for LAMP (I think for Linux, could be wrong) Do a search and download one of them that fits your working requirements and within an hour you will have tested at least one script that uses a database.
Front Page is just an editor and can do many things but connecting to a database and actually running a PHP or MySQL file. An editor might actually help you catch errors, but the real debugging is in actually running the fie on a real server.
So Just set up a working environment with one of the above mentioned tools and with little technical knowledge you will be own your merry way writing and testing your ideas.