graph is not updating information?
Posted: Tue Apr 20, 2004 2:27 pm
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.
it updates without the inclusion of my headers and footers, that's why i had to embed it using the <img statement but it doesn't update?
hope someone can help?
PHP:
--------------------------------------------------------------------------------
it updates without the inclusion of my headers and footers, that's why i had to embed it using the <img statement but it doesn't update?
hope someone can help?
PHP:
--------------------------------------------------------------------------------
Code: Select all
<?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();
?>