Daily Archives: May 11, 2013

MSSQL Connection Testpage

<?php $Server = “localhost”; $User = “your_name”; $Pass = “your_password”; $DB = “examples”; //connection to the database $dbconn = mssql_connect($Server, $User, $Pass) or die(“Couldn’t connect to SQL Server on $Server”); //select a database to work with $selected = mssql_select_db($DB, $dbconn) … Continue reading

Posted in LINUX, SCRIPT, SQL | Leave a comment