Marine1969
IS-IT--Management
I have a page that is dedicated to record maintenance. I have 3 tables where 1 is the main record and the other 2 are multiple records attached to a single record in the main. IE. cstOrders, orderParts, orderServices. When any of the 3 tables get changed (parts added, deleted or edited) I want created a function to calculate the total. My issue is that once it gets to the function it throws the error...
Notice: Undefined variable: conn in /var/ on line 9
I have on line 2 which connects to the database,
.
This include works flawlessly until now. Is there some reason why I am getting the Undefined variable for my connection?
Notice: Undefined variable: conn in /var/ on line 9
I have on line 2 which connects to the database,
PHP:
include "db_connect.php";
This include works flawlessly until now. Is there some reason why I am getting the Undefined variable for my connection?