It's hard to tell from the code, but one mistake I found:
[PHP]
$result = mysql_query($qu ery. $connection);
[/PHP]
The dot is a string concatenator, so the connection string
is appended to your SQL query.
You should call:
[PHP]
$result = mysql_query($qu ery, $connection);
[/PHP]
If this was not the problem, please post the complete SQL-String...
User Profile
Collapse
-
MSSQL Connection/Authentication Problem?
Hi all,
I have a very odd problem:
- System A: Win 2k3 with IIS 6 exposing a little WSDL Webservice
- System B: Win 2k3 with MSSQL Server 2k5
- System C: RedHat Enterprise Server running apache 2.2.x with PHP5 and
PHP Soap extension
All systems are at the same subnet. xxx.xxx.xxx.10 / 11 / 12
I run a PHP script on C consuming a little 'Hello world' Webservice at A:...
No activity results to display
Show More
Leave a comment: