oracle11g - PHP app connect to Oracle Database 11g - MVS 2013 & PHP Tools -
as in title - i'm using mvs 2013 , installed php tools extension. i'm trying connect created databese (oracle database 11g).
<?php $conn = oci_connect('system', 'mypass', 'localhost/xe'); if (!$conn) { $e = oci_error(); trigger_error(htmlentities($e['message'], ent_quotes), e_user_error); } ?>
this code gives me error:
call undefined function oci_connect()
Comments
Post a Comment