| Current Path : /var/www/html/mmishra/indem/cms/ |
| Current File : /var/www/html/mmishra/indem/cms/search.php |
<hr style="border: dotted blue 1px">
<div style="align: left;">
<?php
$q = $_REQUEST["q"];
echo "<b>Search result on [ $q ]</b><br>";
mysql_connect("localhost","ada","alld");
mysql_select_db("ada");
$rs = mysql_query("select id,title,content,counter,dated from webpages where keywords like '%q%'");
while ($o = mysql_fetch_object($rs)) {
echo "<br><a href='inner.php?pg=$o->id'>$o->title</a> <font size='-1'>[ accessed $o->counter times since $o->dated ]</font>";
echo "<dir style='margin-left:50px'>" . substr($o->content,0,200) . "...</dir>";
}
?>
</div>
<hr style="border: dotted blue 1px">
<br>