Skip to content

Tag: php

global variable PHP not getting updated

In my code: <?php $var1 = 0; //I want `$var1` to retain its value in all functions `abc()` and `xyz()` abc(); function abc() { global $var1; $varDatabase = 10; //a value from database …