Is there a way to echo (or otherwise display) a separate HTML page from within a PhP page? In other words, I have a HTML page, lets call it Mypage.html in the same directory as my PhP page. Under certain conditions, I wish to display Mypage.html when a certain condition in my PhP code is met. Ie:
If <condition>
Then display MyPage.html (and stop)
Else Continue in PhP
Is there an easy way to do this without echoing the entire HTML page within the PhP code?
Thanks from still a newbie! Basil