Re: [PHP-DB] Connect to MSDE using PHP

2004-02-23 Thread Adam Voigt
I have connected to MSDE from PHP and it does work, what I would suggest, is ignore trying to do hostnames, and use IP's, so change the connect line to the IP of the MSDE machine. I know some will say it's not necessary, but I'm just telling you what I did, and it worked fine using the standard

[PHP-DB] Connect to MSDE using PHP

2004-02-22 Thread John W. Holmes
I've downlownded and installed the Desktop Edition of MSSQL and am trying to connect to it with PHP. Has anyone ever accomplished this? I've uncommented the line in php.ini to load the MSSQL functions and they show up on a phpinfo() page, so that part is good. When I installed MSDE I tried it

Re: [PHP-DB] Connect to MSDE using PHP

2004-02-22 Thread Robert Twitty
Hi John I have never used MSDE, but from my understanding if is suppose to behave like SQL Server. When you installed it, did it mention anything about whether or not TCP/IP connectivity should be supported? You may need to ensure that the server is communicating over port 1433. If you are

Re: [PHP-DB] Connect to MSDE using PHP

2004-02-22 Thread John W. Holmes
Robert Twitty wrote: I have never used MSDE, but from my understanding if is suppose to behave like SQL Server. When you installed it, did it mention anything about whether or not TCP/IP connectivity should be supported? You may need to ensure that the server is communicating over port 1433. If