CIS4301 DB Project
Make sure the following appears in all of your php files in order to connect to the database:
#!/usr/local/bin/php
<?php require ('../connect.php'); ?> <!--connects to database-->
<?php
...
Some PHP...
...
?>
<?php oci_close($connection); ?> <!--closes database connection-->