Problem: An CGI error kept occuring when inserting data to the database and could not find the problem
Solution: Missed some simple code
oci_free_statement($stmt);
The statement was not closed which created errors. Fairly simple error but may happen again

