Quote:
Originally Posted by stephenNYC
Thanks very much. Those were very helpful replies and I got a lot closer: on my test pages the code writes out correctly, but I am confused about how to make $cUserNewsContent & $cNewsContent into global variables so I can call when needed.
Thanks again
Stephen
|
near the top of the php script that you want the variable to appear in, put
require_once("whatever the news php scrit is called.php")
Inside any function or method which needs to use the variables, put
global $variablename;