Jump to content

Update Query (syntax?) problem?


karassik

Recommended Posts

Hello,

 

I\'ve been trying to get this query to work all morning and I think it has a syntax problem. Anyone agree?

 

Nishan

 

$sql=\"UPDATE dlybatchlog_dblog SET clsmnth_dblog = \'\".$_POST[\'dropdate\'].\"\', idclinic_dblog = \'\".$_POST[\'idclinic_dblog\'].\"\', runnum_dblog = \'\".$_POST[\'runnum_blog\'].\"\', charges_dblog = \'\".$_POST[\'charges\'].\"\', adjustments_dblog = \'\".$_POST[\'adjustments\'].\"\' WHERE idclnblog_dblog = \'\".$_POST[\'id_clnblog\'].\"\' \";

Link to comment
https://forums.phpfreaks.com/topic/571-update-query-syntax-problem/
Share on other sites

Try this

 

$sql="UPDATE dlybatchlog_dblog SET clsmnth_dblog =\'$_POST[\'dropdate\']\', idclinic_dblog = \'$_POST[\'idclinic_dblog\']\', runnum_dblog = \'$_POST[\'runnum_blog\']\',charges_dblog =\'$_POST[\'charges\']\', adjustments_dblog = \'$_POST[\'adjustments\']\' WHERE idclnblog_dblog = \'$_POST[\'id_clnblog\']\'";

Archived

This topic is now archived and is closed to further replies.

×
×
  • 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.