ocibindbyname($stmt,":data",&$data,32) ocibindbyname($stmt,"data",&$data,32)
the first sentence has ":" before data the second has no
which is right
The first one.
You tell PHP to bind :data placeholder with address of var $data.
JBL