mailbox Error

08/28/2009 01:50 theoners#1
Fatal error: Call to undefined function mssql_connect() in C:\xampp\htdocs\indra-skazi-im\mailbox.php on line 53

53 line :
$ms_con = mssql_connect($mssql['host'],$mssql['user'],$mssql['pass']);

all the connet info
fill right
need add ODBC for this?
08/28/2009 02:01 caper#2
You do not need ODBC for this but did you check your PHP config to see if mssql support is enabled? It's not by default.
08/28/2009 02:13 theoners#3
how i enabled its?
08/28/2009 13:14 janvier123#4
Add in script:


PHP Code:

$mssql 
= array(
        
'host' => "YOURIP",
        
'user' => "YOURUSERNAME",
        
'pass' => "YOURPAWWORD"
    
); 
08/28/2009 13:51 theoners#5
again i fill it correct
08/28/2009 14:57 janvier123#6
try this


PHP Code:
$ms_con mssql_connect($mssql['localhost'],$mssql['sa'],$mssql['mypassword']); 
08/29/2009 23:41 theoners#7
not working..
damit
08/30/2009 02:49 janvier123#8
Open php.ini file
Find ;php_mssql.dll
Delete prefix ";"
08/30/2009 05:15 theoners#9
tnx dude work
08/30/2009 07:32 -=ToMiK=-#10
Answer Found... MODS please close this thread.