Jump to content

Update Syntax $_POST, $_SESSION problem?


karassik

Recommended Posts

I have a problem with the following UPDATE:

 

$sql=\"UPDATE dlybatchlog_dblog SET check_dblog = 1 WHERE idclinic_dblog = \'\".$_POST[\'idclinic_dblog\'].\"\' AND DATE_FORMAT(date_dblog,\'%m-%d-%Y\') = DATE_FORMAT(NOW(),\'%m-%d-%Y\') AND idcon_dblog = \'\".$_SESSION[\'KT_id_MSSIntranet\'].\"\';\" ;

 

It works perfectly when I use actual numbers instead of $_POST and $_SESSION vars. Anyone see my mistake? Or suggest a mistake I may be making?

 

Thanks for looking,

 

Nishan

Link to comment
Share on other sites

include the POST and SESSION values like you would with any other variable (without the string concatenation), and encase the variables in braces like so:

 

{$_POST[\'value\']}

 

if you don\'t like that idea, you can always localize the variables by going:

 

$value = $_POST[\'value\'];

 

and including it in your queries like so:

 

WHERE idclinic_dblog=\'$value\'

 

hope this helps, i ran into these problems too.

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.