//////////////////////////////////////////
// Script News Version : 2.0 //
// Programms BY : Mr.php-ar //
// http://www.php-ar.com //
// File Name : T-show.php //
//////////////////////////////////////////
include ("connect.php");
include ("function.php");
$htmlheader=InCludePageHtml("template/header.html");
eval("echo stripslashes(\"$htmlheader\");");
ss(" عرض الاخبار ");
$count=$_GET['count'];
if(!$count){
$count=0;
}
$phpar = mysql_query("SELECT * FROM phpar_news ORDER BY NewsID DESC ");
$i=1;
$perpage=$ShoW;
$next=1;
$phpar2 = mysql_query("SELECT * FROM phpar_news ORDER BY NewsID DESC LIMIT $count,$perpage");
while($Rows = mysql_fetch_array($phpar2)){
extract($Rows);
$check_end=mysql_num_rows($phpar);
$N_News = nl2br($N_News);
$N_News=str_replace('(:',"
",$N_News);
$N_News=str_replace('|:',"
",$N_News);
$N_News=str_replace('O:',"
",$N_News);
$N_News=str_replace('?:',"
",$N_News);
$N_News=str_replace('!:',"
",$N_News);
$N_News=str_replace('X:',"
",$N_News);
$N_News=str_replace(':S',"
",$N_News);
$N_News=str_replace('L:',"
",$N_News);
$N_News=str_replace('Y:',"
",$N_News);
$N_News=str_replace('V:',"
",$N_News);
$N_News=str_replace(';)',"
",$N_News);
if(strlen($N_News) > 200){
$N_News = substr($N_News,0,200);
$N_News = (" $N_News ... "." المزيد !!");
}
$html=InCludePageHtml("template/T-show.html");
eval("echo stripslashes(\"$html\");");
}
while($next<$check_end){
$next=$next+$perpage;
$i++;
}
?>