Jump to content

Interface file?


ThreeTrees

Recommended Posts

Im trying to connect to an SQL server but without any luck.

it keeps giving me this error

 

Warning: mssql_connect() [function.mssql-connect]: Unable to connect to server: MORS-010A604462\SQLEXPRESS in C:\wapache\htdocs\db.inc.php on line 7

Couldn't connect to SQL Server on MORS-010A604462\SQLEXPRESS

 

in php.net it says

The servername argument has to be a valid servername that is defined in the 'interfaces' file.

 

Whats the interfaces file and how do I define the server?

 

 

thats the code to the connection by the way

 

<?php
$myServer = "MORS-010A604462\SQLEXPRESS";
$myUser = "sa";
$myPass = "****";
$myDB = "mmt";

$dbhandle = mssql_connect($myServer, $myUser, $myPass )
  or die("Couldn't connect to SQL Server on $myServer");

$selected = mssql_select_db($myDB, $dbhandle)
  or die("Couldn't open database $myDB");

mssql_close($dbhandle);
?>


[code]<?php
$myServer = "localhost";
$myUser = "sa";
$myPass = "mypassword";
$myDB = "mmt";

$dbhandle = mssql_connect($myServer, $myUser, $myPass )
  or die("Couldn't connect to SQL Server on $myServer");

$selected = mssql_select_db($myDB, $dbhandle)
  or die("Couldn't open database $myDB");

mssql_close($dbhandle);
?>

 

Thanks in advance[/code]

Link to comment
Share on other sites

This thread is more than a year old. Please don't revive it unless you have something important to add.

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Restore formatting

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.