Question about PHP mysqli prepared statement...?

  • Thread starter Thread starter seanaleo
  • Start date Start date
S

seanaleo

Guest
Is it true to say that for the prepared statement in mysqli, there cant contain markers in MYSQL functions like "replace", "encode", etc. If that is the case, what is the alternative?

E.g.
update comment set description = replace(?,?, description);
insert into user (user, password) values (?, encode(?,?));
 
Back
Top