| Current Path : /var/www/html/mmishra/iws8/html/indem/phq/ |
| Current File : /var/www/html/mmishra/iws8/html/indem/phq/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>