Quote:
Today at 07:19 AM Xenon said this in Post #9
there is a way, but it's not as easy as you tried to do it...
|
The script uses the counter only as a means of testing whether or not it was called for the first time with forumbit 1. If this is the first call go to option 1, if it has been called before go to option 2. Laid out like this:
If ($count_border < 1) {
Do this
} else {
Do this instead
}
I tried putting in $count_border variable as a global right after the line "return $forumbits;" as $count_border++; so it wouldn't equal 1 when forumbit is used next time. Of course it didn't work but implanting some kind of variable and altering its value right after the function is called so the external script would know the value has changed might just be all I need.
Would love to hear your ideas