It’s still better to make your own data module and store your “globals” there. Then all you do is require that module in each of your modules.
Please read: https://docs.coronalabs.com/tutorial/basics/globals/index.html if you haven’t already.
If you do choose to use globals, please make sure you prefix them with _G. so that you know you’re using a global and secondly name your variables in a way that you know it’s yours. This is called namespacing. Modifying @roaminggamer’s suggestion above:
I would change:
\_G.fullw = display.actualContentWidth
to
\_G.myFullw = display.actualContentWidth
As far as I know fullw is safe, but you can never be sure.
Rob