|
Posted by Jay on 10/26/06 12:32
I'm not sure what you mean
$something_to_be_updated;
function update() {
global $something_to_be_updated;
$something_to_be_updated++;
}
or
function update($something_to_be_updated) {
return $something_to_be_updated++;
}
Sonnich wrote:
> Geee cannot remomber
>
> I'd like to do this:
>
> function blabla(var $something_to_be_updated)
> {
> $something_to_be_updated++;
> }
>
> but it is not var. How do I do this?
>
> Is there a better way than a function for this?
>
> s
Navigation:
[Reply to this message]
|