BroChris
10-31-2003, 11:25 PM
I'm trying to configure a poll that I downloaded, but I keep getting errors. This is the only part of the script that I've modified. Assuming all other parts are present and working, is there anything wrong with the syntax of the following?
<?php
if(isset ($page))
{
if ($page == "poll")
{
include("results.php");
}
}
else
{
print("Vote in the poll!");
}
}
?>
<?php
if(isset ($page))
{
if ($page == "poll")
{
include("results.php");
}
}
else
{
print("Vote in the poll!");
}
}
?>