"; $root_element ="homepage"; require '../include/asset.php'; require '../include/Conn.php'; require '../include/config.php'; $xml.=""; $row=array(); /* $query="SELECT ID,smalltitle,sData,udate,picture,picPath,mobilevideo, MATCH(title, fData, sData) AGAINST ('$q') as number #displays relevancy (a value between 0 and 1) FROM news WHERE MATCH(title, fData, sData) AGAINST ('$q') limit 35 #filters (obviously) ";*/ $query="SELECT ID,smalltitle,sData,udate,picture,picPath,mobilevideo FROM news WHERE CONCAT(title,sData,fData) REGEXP '{$q}' ORDER BY ID DESC LIMIT 25"; $result=mysql_query($query) or die(mysql_error()); while($row=mysql_fetch_assoc($result)){ if($row[picture]) { $sdata=$row['sData']; if($row['link']==1){ $goto=htmlspecialchars($row['links']); $target="target=\"_blank\""; } if($row['link']==0){ $goto="/Article/".$row['ID']; $goto=GenerateLinks ("Article",$row['title'],$row['ID'],true); $target="target=\"_self\""; } $txt="no"; $image=STORAGE."{$row['picPath']}Croped/{$row['picture']}"; $thumb=STORAGE."{$row['picPath']}155x84/{$row['picture']}"; if($row['stnews']==3) {$txt="خبر عاجل"; } if($row['stnews']==2) {$txt="خبر حصري";} if($row['stnews']==1) {$txt="نشر اول";} if($row['stnews']==4) {$txt="بث مباشر";} if($row['mobilevideo']!=''){ $v= $row['mobilevideo']; }else{ $v="no"; } if($row['mobilevideo']!=''){ $v= $row['mobilevideo']; }else{ $v="no"; } } $xml .="
{$row['ID']} {$row['title']} {$row['smalltitle']} {$row['sData']} {$image} {$thumb} {$goto} {$target} {$source} {$row['ID']} {$txt} {$row['ID']} {$row['Name']} /{$row['mCat']}/ {$row['ID']} {$row['number']}
"; } $xml.="
"; echo $xml; mysql_close($conn); $fp = fopen($cachefile, 'w'); // save the contents of output buffer to the file fwrite($fp, $xml); // close the file fclose($fp); // Send the output to the browser ob_end_flush(); ?>