wat dit javascript doet is hij autorefreshed de iframe.
Maar ik krijg verschillende errors, de current error is:
Parse error: syntax error, unexpected T_STRING, expecting ',' or ';' in /home/jeroen/domains/99fish.nl/public_html/user/11111/index.php on line 5
<?php
if (!empty($_GET['id'])) {
echo "<script>";
echo "window.setInterval("reloadIFrame();", 5000);";
echo "function reloadIFrame() {";
echo " document.frames["iframe"].location.reload();";
echo "}";
echo "</script>";
} else {
?>
<div class="inner">
<form action="index.php" method="get">
<input type="hidden" name="id" value="refresh">
<input class="btn btn-block btn-info" type="submit" value="Auto-Refresh">
</form>
<?php
}
?>
</div>
<iframe name="iframe" id="iframe" src="index2.php" width="100%" height="100%"></iframe>