I want to redirect to a html page when a certain if condition has been met in my php file. Like this:
<?php
if(condition is met)
//equivalent to location.href("homepage.html")
?>
How do I do this?
I want to redirect to a html page when a certain if condition has been met in my php file. Like this:
<?php
if(condition is met)
//equivalent to location.href("homepage.html")
?>
How do I do this?