I'm trying to display the poll (and results) using some simple PHP. I imagine this has been done before, but I've crawled the forums and can not find what I'm looking for.

Using the Advanced Front Page module and Poll - Need to display the poll and results on the advanced front page, so am looking for some PHP to do this. Tried using the code below from this forum, but though my poll node id is 15, I'm not seeing the poll.

<?php
  $pollid = '15';
  $poll = node_load(array('nid' =>$pollid));
  poll_view($poll,1,0);
  echo $poll->body;
  echo '</div>';
?>

Any help is greatly appreciated. Thanks.