go to the php manual, database functions. there's one chapter for every db system supported, such as "mysql functions" and "oracle functions". compare the chapters.
oracle basically uses the same steps that mysql does (connect - execute - fetch - close), except for one: a statement has to be parsed before executed:
connect - parse - execute - fetch - close.