Ok so I have this code before the <head> tag because of other junk (code) before it...
$status = "<p><font size=\"2\">[<a href=\"$site/usercp.php\"><< back</a>]</font></p>
<p><b>News Articles</b></p>
<p>
connectToDB($dbname, $dbhost, $dbuser, $dbpw);
showTitles($dbname, news, modify);
</p>
<p><b>Lan News Articles</b></p>
<p>
connectToDB($dbname, $dbhost, $dbuser, $dbpw);
showTitles($dbname, lannews, modify)";
And I need to call $status down in the page (to print) all the HTML. How would I get the functions to work properlly? It prints out what is there (and I know that it does and I know I dont have the correct code to do what I want)....how would I go about calling the functions without printing out the actual function (ie. connectToDB(blah blah) will show up as is (it does not use the function).
I hope u guys (and gals) get what im saying.