I've resorted to using Java Script to update the content of my News window by layering <div>s and having them hidden or made visible with behaviors accordingly.
Now my new problem is:
Is it possible to put a php variable (say $News01) inside the news window and it will display the content of $News01?
Would it be like this:
<?PHP
Get_Content01($News01);
echo ($News01);
?>
Where the calling of function Get_Content will send variable $News01 to retrieve whatever the current data of $News01 is on another .php page. Also let's say my file with the functions in it is called newscontent.php. How would I properly use the include statement in my index.php document to attach newscontent.php so the function can be called and variable passed?
Thanks guys!