So I have two pages, my PHP script and then an HTML page with two iframes in it.
> <html>
>
> <iframe name=1></iframe> <iframe name=2></iframe>
>
> </html>
Iframe2 is currently housing my PHP script. My PHP script is something like below:
<?php
if this {
do this
}
?>
What I am trying to find out is if it's possible for my IF condition within my PHP script can reload iFrame1? I've played around with different methods and onClick obviously works to reload the frame, but I need the frame to reload based on the IF condition being met and I can't really figure that out. TIA!