I have this code,
$head_mark = $_POST["headmark"];
$id = $_POST["headmark_id"];
$cuttingUpdateParse = oci_parse($conn, "UPDATE FABRICATION SET CUTTING = $cutting_done
WHERE HEAD_MARK = $head_mark AND ID = $id");
somehow oracle doesnt want to accept this kind of code. the message i got from firebug is
warning:
Warning: oci_execute(): ORA-00904: "TEST1": invalid identifier in C:\xampp\htdocs\WeltesInformationCenter\update_bar\process_class.php on line 33
Please help me with your suggestion, the data type in associated with HEAD_MARK is VARCHAR2(15). I am assuming we need to make some kind of string conversion so that oracle sql can read it.