Codeigniter Query |
@amansusanto,
What errors are you seeing? Also, I wouldn't do you query like that. You could open yourself up to sql injections. I would use this the query binding method instead (https://www.codeigniter.com/userguide3/d...y-bindings ). PHP Code: $sql = " update [do] set customer=?, tgl=?, Notes=?, Total=? where doid=?" |
Messages In This Thread |
Codeigniter Query - by amansusanto - 04-06-2019, 03:00 AM
RE: Codeigniter Query - by php_rocs - 04-06-2019, 12:23 PM
RE: Codeigniter Query - by amansusanto - 04-07-2019, 07:39 PM
|