User Profile

Collapse

Profile Sidebar

Collapse
menmaatre
menmaatre
Last Activity: Nov 16 '08, 01:26 PM
Joined: Nov 15 '08
Location:
  •  
  • Time
  • Show
  • Source
Clear All
new posts

  • menmaatre
    replied to Please help with this error in SQL syntax.
    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...
    See more | Go to post

    Leave a comment:


  • menmaatre
    started a topic MSSQL Connection/Authentication Problem?

    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:...
    See more | Go to post
No activity results to display
Show More
Working...