Hi,
I have a variable that is created inside a function that I want to be able to use through the rest of the script (outsite the function). How do I allow this?
Thanks for any help,
`Oni.
Hi,
I have a variable that is created inside a function that I want to be able to use through the rest of the script (outsite the function). How do I allow this?
Thanks for any help,
`Oni.
You can use the global keyword in your function, allowing you to access the variable outside the function.
Hope that helps.
Thanks heaps Rodney.