I have php code like this :
<div>
<?php if($link AND $access AND !$timer_expired): ?>
<font color="green">Status: Unlocked - You have successfully unlocked "<?php echo htmlspecialchars($link['link_title']);?>", the website is listed below.</font>
<?php else:?>
<font color="red"> Status : Locked - To Unlock "<?php echo htmlspecialchars($link['link_title']);?>" Please Complete the Survey.</font>
<?php endif;?>
</div>
I need to let it reload it self until the status be "Unlocked" then stop load
There is many of posts talking about reload php file..but i don't need that..i just want to reload php code
Any idea please ?