With help from you guys ive managed to view my online poll image in a different html page with this code, unfortunately it doesn't seem to update, but just shows the same graph each time as it was before. its not updating once a person clicks on the vote button.
hope someone can help?
<?php
session_start();
ob_start();
// image.php is holding the header() and other info of the above picture
include ('../includes/header.html');
?>
<img src="show_poll.php">
<?php
include ('../includes/footer.html');
ob_end_flush();
?>