
Originally Posted by
AdamTOW
Folks,
I have an editable sidebox and through define page manager I am trying the following code:
<?php
// Important! You have to include it before your html code
include_once "/home/nutrili/public_html/shoppoll/poll_cookie.php";
?>
<html>
<body>
<?php
include_once "/home/nutrili/public_html/shoppoll/booth.php";
echo $php_poll->poll_process(5);
?>
</body>
</html>
The only thing that appears in the sidebox is poll_process(5);
But when I use this code in say Page 2 the poll shows up fine. Obviously there is a conflict in the code I am using in a sidebox area.
How can I adjust the code above and get the poll to work?
Thanks in advance.