session_start();
include 'sistem.php';
include 'ayar.php';
$aranan=$_POST["aramak"];
$ara =mysql_query("SELECT * from postlar where tag like '%$aranan%%'");
while ($sorgu = mysql_fetch_array($ara)) {
echo $sorgu["yazi"];
}
?>
Konu: site içi arama yapmak ?
session_start();
include 'sistem.php';
include 'ayar.php';
$aranan=$_POST["aramak"];
$ara =mysql_query("SELECT * from postlar where tag like '%$aranan%%'");
while ($sorgu = mysql_fetch_array($ara)) {
echo $sorgu["yazi"];
}
?>