şu hatayı veriyor.
Warning: mysql_fetch_array() expects parameter 1 to be resource, boolean given in C:\xampp\htdocs\fulltext\ara.php on line 12
hazırlamış oldugum basıt örnek sistem burda şimdiden teşekür ederim.
http://ge.tt/7kR7EFm/v/0
<?php
include_once("config.php");
?>
<?php
$ara = addslashes(trim(strip_tags($_GET['ara'])));
$limit = 2;
$connect = mysql_query("SELECT *, MATCH(title,chache,link) AGAINST ('".$ara."') AS id from ".$prefix."_news WHERE MATCH (title,chache,link) AGAINST(' ".$ara." ') order by id desc ".$limit." ");
while($call=mysql_fetch_array($connect)){
$id = $call['id'];
$title = $call['title'];
$chache = $call['chache'];
$link = $call['link'];
echo "$title<br/>
$chache<br/>
$link'>";
}
?>