Viewing file: expired_list.php (4.97 KB) -rw-r--r-- Select action/file-type: (+) | (+) | (+) | Code (+) | Session (+) | (+) | SDB (+) | (+) | (+) | (+) | (+) | (+) |
<?php include('config.php'); session_start(); $user_check=$_SESSION['login_user'];
$ses_sql=mysqli_query($db,"select username from login where username='$user_check' ");
$row=mysqli_fetch_array($ses_sql,MYSQLI_ASSOC);
$login_session=$row['username'];
if(!isset($login_session)) { header("Location: addmember.php"); } ?>
<!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> <script src="SpryAssets/SpryMenuBar.js" type="text/javascript"></script> <link href="SpryAssets/SpryMenuBarHorizontal.css" rel="stylesheet" type="text/css" /> <style type="text/css"> a:link { text-decoration: none; } a:visited { text-decoration: none; } a:hover { text-decoration: none; } a:active { text-decoration: none; } body { background-color: #CCC; } </style> </head> <center> <body>
<table width="953" border="0" bgcolor="#FFFFFF"> <tr> <td width="153"><img src="images/basera logo.jpg" width="101" height="100" /></td> <td width="537" align="center"><h1>WELCOME IN BASERA BRANCH</h1></td> </tr> <tr> <td colspan="2"><table width="945" border="0"> <tr> <td colspan="3" bgcolor="#CCCCCC"><?php include('menubar.php'); ?></td> </tr> <tr> <td width="210" bgcolor="#6699CC">Welcome <?php echo $login_session; ?></td> <td width="335" bgcolor="#6699CC"><a href="logout.php">Logout</a></td> <td width="386" bgcolor="#6699CC"><?php echo "Today is " . date("d/m/y") . "<br>";?></td> </tr> </table></td> </tr> <tr> <td colspan="2" align="left"> <form id="form1" name="form1" method="post" action="member_print.php"> <table width="1020" border="0"> <tr> <td width="94" height="22">Rank</td> <td width="9"> </td> <td width="125"><label for="textfield"></label> <input type="text" name="rank" id="rank" /></td> <td width="146">Member Code</td> <td width="147"><input type="text" name="membercode" id="membercode" /></td> <td width="126">Branch</td> <td width="270"><input type="text" name="branch" id="branch" /></td> </tr> <tr> <td>Name</td> <td> </td> <td><input type="text" name="name" id="name" /></td> <td>Father/Hus./Wif.</td> <td><input type="text" name="fname" id="fname" /></td> <td>Date of Birth</td> <td><input type="text" name="dob" id="dob" /></td> </tr> <tr> <td>Occupation</td> <td> </td> <td><input type="text" name="occupation" id="occupation" /></td> <td>Address</td> <td><input type="text" name="address" id="address" /></td> <td>Phone No.</td> <td><input type="text" name="phoneno" id="phoneno" /></td> </tr> <tr> <td>PAN/GIR No.</td> <td> </td> <td><input type="text" name="pan" id="pan" /></td> <td>Experience</td> <td><input type="text" name="experience" id="experience" /></td> <td>Nationality</td> <td><input type="text" name="nationality" id="nationality" /></td> </tr> <tr> <td>Religion</td> <td> </td> <td><input type="text" name="religion" id="religion" /></td> <td>Class of member</td> <td><input type="text" name="clmember" id="clmember" /></td> <td>Nominee Name</td> <td><input type="text" name="nomineename" id="nomineename" /></td> </tr> <tr> <td>Relationship</td> <td> </td> <td><input type="text" name="relationship" id="relationship" /></td> <td>Introducer Name</td> <td><input type="text" name="intname" id="intname" /></td> <td>Code</td> <td><input type="text" name="code" id="code" /></td> </tr> <tr> <td>Top Arranger</td> <td> </td> <td><input type="text" name="toparrnager" id="toparrnager" /></td> <td>Code</td> <td><input type="text" name="code" id="code" /></td> <td>Rank</td> <td><input type="text" name="rank" id="rank" /></td> </tr> <tr> <td> </td> <td> </td> <td> </td> <td> </td> <td> </td> <td><input type="submit" name="button" id="button" value="ADD" /></td> <td></td> </tr> </table> </form> </td> </tr> <tr> <td colspan="2" bgcolor="#CCCCCC"><p> </p> <p> </p> <p> </p></td> </tr> </table> <script type="text/javascript"> var MenuBar1 = new Spry.Widget.MenuBar("MenuBar1", {imgDown:"SpryAssets/SpryMenuBarDownHover.gif", imgRight:"SpryAssets/SpryMenuBarRightHover.gif"}); </script> </body></center> </html>
|