Edit file File name : welcome-emp.php Content :<?php ob_start(); session_start(); include('../include/config.php'); include("../include/functions.php"); validate_admin(); if($_SESSION['user_type']=='admin'){ header("location:welcome.php"); exit(); } ?> <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html xmlns="http://www.w3.org/1999/xhtml"> <head> <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> <title><?php echo ucfirst(SITE_TITLE);?></title> <link href="css/admin.css" rel="stylesheet" type="text/css" /> </head> <body> <table width="100%" height="100%" border="0" cellpadding="0" cellspacing="0"> <tr> <?php include("header.php") ?> <td align="right" class="paddRtLt70" valign="top"> <table width="99%" border="0" cellspacing="0" cellpadding="0"> <td align="right" valign="top"> <table width="100%" height="" border="0" cellspacing="0" cellpadding="0"> <tr> <td align="left" valign="middle" class="headingbg bodr text14"><em><img src="images/arrow2.gif" width="21" height="21" hspace="10" align="absmiddle" /></em>Welcome to <?php echo SITE_TITLE;?> Administration control Panel </td> </tr> <form name="frm" method="post" enctype="multipart/form-data"> <tr> <td height="300" align="left" valign="top" bgcolor="#f3f4f6" class="bodr"> <table width="100%" cellpadding="0" cellspacing="0"> <tr> <td align="center" class="paddTop10 text14"><h2>Welcome User !</h2></td> </tr> <tr> <td align="center" class="paddTop5 paddBot11 text14">Please select any action from the top menu.</td> </tr> </table> </td> </tr> </form> </table></td> </tr> </table></td> </tr> <?php include('footer.php'); ?> </table> </body> </html> Save