Your IP : 216.73.216.40


Current Path : /var/www/html/mmishra/indem/phq-bak/
Upload File :
Current File : /var/www/html/mmishra/indem/phq-bak/information.php

<span style="color:green;font-weight:bolder;background-color:khaki;padding:5px"><?=label('information',$link)?></span>
<table id='khaki_box' width='100%'><tr><td>
<?php
if (isset($_GET['code'])){
  $code = $_GET['code'];
  $rs = mysql_query("select * from information where code='$code'", $link);
  if ($rs){
    $o = mysql_fetch_object($rs);
    $id = $o->id;
    $title = $o->title;
    $content = $o->content;
    $date_update = $o->date_update;
    echo "<b>".$title."</b><div align='right'>Last updated: ".$date_update."</div>";
    echo $content; 
  }
}
?>
</td></tr></table>