I have PHP file and HTML as shown below
<?php
require_once('includes/start.php');
require_once('includes/config.php');
require_once('includes/utils.php');
require_once('includes/messages.php');
//destroySession();
if(isset($_GET['action']) && ($_GET['action'] == 'signout')) {
$_SESSION['LOmsg'] = SIGN_OUT_SUCCESS ;
$_SESSION['LOmsgCss'] = 'msg_green';
redirectPage('index.php');
}
?>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />
<title>Scriptase™</title>
<script type="text/javascript" src="JS/tabs.js"></script>
<script type="text/javascript" src="JS/trim.js"></script>
<link href="CSS/lm_tabs.css" rel="stylesheet" type="text/css" id="retabs"/>
<link href="CSS/sx.css" rel="stylesheet" type="text/css" id="restyle"/>
<script type="text/javascript" src="JS/ajaxtabs.js"></script>
<script type="text/javascript" src="JS/sx.js"></script>
<script type="text/javascript">
</script>
</body>
</html>
When I try to host it in IIS, This page is not getting loaded.Pages with only HTML is working and Page with only PHP is loading file
I want to host this page in IIS, Please suggest me solution
New contributor
Harish Valurouthu is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.