Hi there,I have 5 databases in Microsoft SQL Server Management Studio. Each has a name such as V1_database??? (e.g. V1_database_york, V1_database_vegas etc). How would I go about querying these databases? At the moment I am only querying out of one database... Here is part of an include file...<?php/*database connection */$serverName = ".\SQLEXPRESS";$connectionOptions = array("Database"=>"V1_database_york", "UID"=>"username", "PWD" => "password", "ReturnDatesAsStrings" => true, "ConnectionPooling" => true); /* Connect using Windows Authentication */$conn = sqlsrv_connect($serverName, $connectionOptions);?>How do I change this include file to include any database starting with V1_database???? Any advice would be greatly appreciated!Cheers,Neil