hi all Is there any function in PHP to autoimcrement a variable, whenever that script is run. thanks IM
What variable?
Do you mean $var++; ? That will increase the variable value by one. So if var is 5 and you execute that command, var will be 6.
--kinadian