[Solved] php errors – Notice: Undefined variable: iAccount_db in D:\iac\htdocs\datas\scripts\iAccount_core.inc.php on line 135 [closed]
[ad_1] Ok, now that you posted some code, you’re defining $iAccount_db in the correct place, but you’re trying to access it when inside the scope of a funcion , while the variable is defined outside of it. Bad solution: make $iAccount_db global (not recommended) A variant to this would be to make those variable CONSTANTS, … Read more