Hey all!
How can I update a recordset (more than ONE field ) using Firebird 1.0 (Interbase 6.0) database with ibase_prepare and ibase_execute function?
I tried this:
...
$sth = ibase_prepare('UPDATE benutzer SET user_name=?, user_fname=? ... WHERE user_id=?');
$trans=ibase_trans();
ibase_execute($sth,stripslashes(strip_tags($HTTP_POST_VARS["user_name"])),stripsh..... $HTTP_POST_VARS["chgud"]);
ibase_commit($trans);
It´s possible to update one field with this statemant. How can I update more than one field?
Any ideas??
Thx mbsouth