Is the index page showing the current poll results? If so, just redirect back to that. eg;
header("Location: index.php");
Otherwise, you'll need to write that functionality in, and have it called with a redirect something like...
header("Location: index.php?showpoll=results")
Then, in index.php have something like...
if (isset($_GET['showpoll'])) {
if ($_GET['showpoll'] == 'results') {
// code to show results.
}
}
Hope this helps.