How to use PHP & Oracle (oci8) Connect to Database This is the guideline/example scripts how to use PHP connect to Oracle database
ShotDev Focus:
- PHP & Oracle database.
Example
php_connect_oracle.php
<html> <head> <title>ShotDev.Com Tutorial</title> </head> <body> <? $objConnect = oci_connect("myuser","mypassword","TCDB"); if($objConnect) { echo "Oracle Server Connected"; } else { echo "Can not connect to Oracle Server"; } ?> </body> </html>
Create a php file and save to path root-path/myphp/
Run
http://localhost/myphp/php_connect_oracle.php
Screenshot