Monday 20 June 2016

Header of abc

<!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>Untitled Document</title>

<link rel="stylesheet" type="text/css" href="<?php echo base_url();?>/css/style.css">

</head>

<body>

<div class="header">

<table width="100%">
<tr>

<td align="right">
<span style="font-size:18px;">Welocme</span> &nbsp;-
<span style="text-transform:capitalize; font-size:16px; color:#FFF;">
<?php echo $this->session->userdata('username');?>
</span>
<br>

<span style="font-size:18px; color:#F00;">
<a href="<?php echo base_url();?>index.php/logout">Logout</a></span> ||

<a href="<?php echo base_url();?>index.php/chgpwd">Change Password</a>
</td>
</tr>
</table>
<ul class="menu">

    <li><a href="">Mobile</a>
   
    <ul>
        <li><a href="">Sony</a></li>
        <li><a href="">Samsung</a></li>
        <li><a href="">Apple</a></li>
     </ul>
   
    </li>
   
    <li><a href="">Computer</a><ul>
        <li><a href="">Sony</a></li>
        <li><a href="">Dell</a></li>
        <li><a href="">Hp</a></li>
     </ul></li>
    <li><a href="">Men</a></li>
    <li><a href="">Women</a> </li>

</ul>
</div>
<table width="200" border="1">
  <tr>
    <td><?php if($this->session->flashdata('msg')=='sucess')
    { ?>
    <div class="success"><?php echo $this->session->flashdata('type')?></div>
   
     <?php
    }
    ?>
      
    </td>
   
  </tr>
</table>

</body>
</html>

No comments:

Post a Comment