I am working on a perl script, here based on a if condition, i have to display differnt html pages(rather throw html pages on a browser...) one way to do is
if(condition) {
write all html code here
}
is there a way thru which i can instead call the html file like all that html code which is already been written in some xyz.html file can simply be called,
like
if(condition) {
throw xyz.html on to the browser
}
if there is way, how?
thanks a lot
regards.
rt