Tagged Questions

3
votes
9answers
449 views

Where are constant variables stored in C?

I wonder where constant variables are stored. In the same memory area as global variables? Or on the stack?
0
votes
4answers
37 views

PHP: Dealing With MySQL Connection Variable

What is the best way to deal with the $db_conn variable once I create a mysqli object? I've been using $GLOBALS['_sql'] = new mysqli(...); But this seems dirty. The alternative that I've seen is …
0
votes
2answers
37 views

Setting globals in Drools

How do I set a global in Drools 4 from within a rule? I want to set a boolean if a rule fires so that it can read it from another rule with a lower salience.
0
votes
5answers
43 views

globals php help

I am trying to use a global in a file that is just used to post data to. The global is not being registered on that page. How can I get the globals accessible in that page. EDIT maybe I wasnt too …