How To connet mssql to php please please please help meeee.
I'll wait for you guys to answer

Recommended Answers

All 8 Replies

Hi Guys. whenever the connecting code in PHP to MSSQL error comes when I can

fatal error call to undefined function mssql_connect()

please please please guys help meee.

I think php_mssql.dll file is missing. Are you using XAMPP server? or Some other

Iam using XAMMP 5.6 Sarver .

Try the below and let me know

<?php
    $objConnect = mssql_connect("localhost","sa","");
    //$objConnect = mssql_connect($host,$user,$pass);

    //$host = server,ip,computer-name
    //$user = user
    //$pass = password
    if($objConnect)
    {
        echo "Database Connected.";
    }
    else
    {
        echo "Database Connect Failed.";
    }

    mssql_close($objConnect);
?>
commented: Be nice to get feedback +15

No man is not running this code.

What should I do now. This project is very important

Check your phpinfo file. For your mssql is enabled

ok i will check

Be a part of the DaniWeb community

We're a friendly, industry-focused community of developers, IT pros, digital marketers, and technology enthusiasts meeting, networking, learning, and sharing knowledge.