Thank for that.
can you advise how to save variables in PHP file?
lets say i have a function that i pass a value to,
Code: Select all
<?php
$num = 1;
$qbClientString = isset($_GET['ClientString']) ? $_GET['ClientString'] : '';
$num++;
writeName($num);
function writeName($String) {
print($String);
}
?>But how do i go about saving this 2, so next time i run it it will return 3, 4, 5...
so it saves the variable.
I just want to be able to save a simple variable in my PHP file.
Then retrieve it.