Okay on my index.php, I have a code:
<?php include '../poll/booth.php'; display_booth(1); ?>
What that does is include the booth.php which displays poll number 1 (This is using the SymPoll script). When that display_booth() function is called, it messes up everything on the page because that function for some reason interferes with all the other php on the page. Is there a way to seperate the functions and all php code on booth.php from index.php and still display them together on index.php?