Hi, is there any way to increase the value of a variable,$test(in a function) by one each time the script is called?
<? //test.php
function main(){
print"The value of variable a will auto increment by 1: $test";
}
main();
?>
I don't use cookie since the users maybe turn it off. Thanks in advance.