Jump to content

PHP Warning: mssql_query(): message: Incorrect syntax near ','.


shaydes

Recommended Posts

I am using this query to get data:


$cids = "212, 225";
$query = "select users.id as id, name, convert(text, intro) as intro from users, sections where status=1 and sections.user_id = users.id and users.id in ($cids)";
$result = mssql_query($query);
[/Code]

 

This is the message I get:

PHP Warning:  mssql_query(): message: Incorrect syntax near ','. (severity 15) in /var/www/msq/select-intro.php on line 495, referer: http://abc.domain.com/select-intro.php.

 

Before executing the query, the string looks like this:

select users.id as id, name, convert(text, intro) as intro from users, sections where status=1 and sections.user_id = users.id and users.id in (212, 225)

 

The comma separated list ($cids) is generated by imploding an array on integers. If I copy the string from debugging output, there is no PHP Warning but if I use $cids, there is.

Link to comment
Share on other sites

  • 2 weeks later...

The values come from the database:


$query = select id from users where active =1;
...
while ($row = mssql_fetch_row($result)
$ids[$row->id] = $row->id;

The the array of ids is converted to comma separated list
$cids = implode(",", $ids);
[/Code]

 

I had used sample values to illustrate.

 

Link to comment
Share on other sites

This thread is more than a year old. Please don't revive it unless you have something important to add.

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Restore formatting

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.