Skip to content

PHP, how do I pass variables between methods?

I’m trying to pass a variable from one method to another. I’m fetching dates from an events table in order to build a dynamic query in another method. this returns my sumCase array without problems, I’m now trying to access this sumCase array in another method in order to build the query: wh…

Using PHP to reload a page with new div content

I have a page that has main content and a menu bar, when a user logs in a $_SESSION variable is set via data pulled from a database to determine which main content and which menu bar the user sees. …