I have configured php to work with MySQL and MSSQL for that I have placed php.ini file in C:/windows.
In order to test I have created two php files
1)php file which included database connection related code using mysql_connect and mssql_connect functions.This file is working and database connection is established.
2)php file to display today date.<?print strftime("%d-%m-%y");?>.This file is not working and displaying blank screen.
If I place php.ini file in C:/php, php file to display date is working and the first file for database connections is not working and a"fatal error:cannot find function mssql_connect()" is displayed
Where do i place php.ini file inorder to work my database php file and date php file