Sunday 22 November 2015

Open the webpage without click the menu use shortcut ALT+any key

<div id="cssmenu1">
 <ul>
  <li>
   <a href='WorkInProgressForm.php' accesskey="a" title="alt+a">
    <?php if(@$page=="Add New Record"){ ?>
     <span style="color:#CCFF66;"><label style="text-decoration:underline;">A</label>dd New Record</span>
<?php } else { ?>
<span><label style="text-decoration:underline">A</label>dd New Record</span>
<?php } ?>
   </a>
  </li>
  <li style="margin-left:20px;">
   <a href='workinprogresstable.php' accesskey="w" title="alt+w">
    <?php if(@$page=="Work In Progress"){ ?>
     <span style="color:#CCFF66;"><label style="text-decoration:underline">W</label>ork In Progress</span>
<?php } else { ?>
<span><label style="text-decoration:underline">W</label>ork In Progress</span>
<?php } ?>
   </a>
  </li>
  <li class='active has-sub' style="margin-left:20px;">
   <a href='report.php' accesskey="p" title="alt+p">
    <?php if(@$page=="Progress Sheet"){ ?>
     <span style="color:#CCFF66;"><label style="text-decoration:underline">P</label>rogress Sheet</span>
<?php } else { ?>
<span><label style="text-decoration:underline">P</label>rogress Sheet</span>
<?php } ?>
   </a>
  </li>
  <li class='active has-sub' style="margin-left:20px;">
   <a href='clienttable.php' accesskey="c" title="alt+c">
    <?php if(@$page=="Client Name"){ ?>
     <span style="color:#CCFF66;"><label style="text-decoration:underline">C</label>lient Name</span>
<?php } else { ?>
<span><label style="text-decoration:underline">C</label>lient Name</span>
<?php } ?>
   </a>
  </li>
  <li class='active has-sub' style="margin-left:20px;">
   <a href='task.php' accesskey="t" title="alt+t">
    <?php if(@$page=="Task Table"){ ?>
     <span style="color:#CCFF66;"><label style="text-decoration:underline">T</label>ask Table</span>
<?php } else { ?>
<span><label style="text-decoration:underline">T</label>ask Table</span>
<?php } ?>
   </a>
  </li>
  <li class='active has-sub' style="margin-left:20px;">
   <a href='assessmentyear.php' accesskey="y" title="alt+y">
    <?php if(@$page=="Assesment Year Table"){ ?>
     <span style="color:#CCFF66;">Assesment <label style="text-decoration:underline">Y</label>ear Table</span>
<?php } else { ?>
<span>Assesment <label style="text-decoration:underline">Y</label>ear Table</span>
<?php } ?>
   </a>
  </li>
  <li class='active has-sub' style="margin-left:20px;">
   <a href='StatusTB.php' accesskey="s" title="alt+s">
    <?php if(@$page=="Status"){ ?>
     <span style="color:#CCFF66;"><label style="text-decoration:underline">S</label>tatus</span>
<?php } else { ?>
<span><label style="text-decoration:underline">S</label>tatus</span>
<?php } ?>
</a>
  </li>
  <li class='active has-sub' style="margin-left:20px;">
   <a href='RemarksTB.php' accesskey="r" title="alt+r">
    <?php if(@$page=="Remarks"){ ?>
     <span style="color:#CCFF66;"><label style="text-decoration:underline">R</label>emarks</span>
<?php } else { ?>
<span><label style="text-decoration:underline">R</label>emarks</span>
<?php } ?>
</a>
  </li>
  <li class='active has-sub' style="margin-left:20px;">
   <a href='point.php' accesskey="o" title="alt+o">
    <?php if(@$page=="Work Analysis"){ ?>
     <span style="color:#CCFF66;">W<label style="text-decoration:underline">o</label>rk Analysis</span>
<?php } else { ?>
<span>W<label style="text-decoration:underline">o</label>rk Analysis</span>
<?php } ?>
</a>
  </li>

  <span style="margin-top:5px; margin-right:20px; float:right; text-align:center; font-size:17px; color:
  #00CC66;">
   Welcome <?php echo ucwords($uname[0]); ?>
  </span>
 </ul>
</div>

</div>